This commit is contained in:
Nikolay Kim 2022-10-03 10:21:08 +02:00
parent 68def82d90
commit 7ce1927566
13 changed files with 21 additions and 18 deletions

View file

@ -247,7 +247,7 @@ impl ResourceDef {
let mut end = None;
let mut tail = false;
let mut rem = pattern;
let start = if pattern.starts_with('/') { 1 } else { 0 };
let start = usize::from(pattern.starts_with('/'));
let mut pattern = &pattern[start..];
elems.push(PathElement::Str('/'.to_string()));
@ -345,7 +345,7 @@ impl ResourceDef {
}
loop {
let start = if pattern.starts_with('/') { 1 } else { 0 };
let start = usize::from(pattern.starts_with('/'));
let idx = if let Some(idx) = pattern[start..].find(|c| c == '{' || c == '/') {
idx + start
} else {

View file

@ -2,7 +2,7 @@ use super::tree::Tree;
use super::{IntoPattern, Resource, ResourceDef, ResourcePath};
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ResourceId(pub(crate) u16);
pub struct ResourceId(u16);
/// Resource router.
#[derive(Clone)]