mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
clippy
This commit is contained in:
parent
68def82d90
commit
7ce1927566
13 changed files with 21 additions and 18 deletions
|
@ -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 {
|
||||
|
|
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue