mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
clippy
This commit is contained in:
parent
73c172400c
commit
e57b712f7b
11 changed files with 19 additions and 19 deletions
|
@ -122,7 +122,7 @@ impl<T: ResourcePath> Path<T> {
|
|||
for item in self.segments.iter() {
|
||||
if key == item.0 {
|
||||
return match item.1 {
|
||||
PathItem::Static(ref s) => Some(&s),
|
||||
PathItem::Static(s) => Some(s),
|
||||
PathItem::Segment(ref s) => Some(s),
|
||||
PathItem::IdxSegment(s, e) => {
|
||||
Some(&self.path.path()[(s as usize)..(e as usize)])
|
||||
|
@ -192,7 +192,7 @@ impl<'a, T: ResourcePath> Iterator for PathIter<'a, T> {
|
|||
}
|
||||
};
|
||||
self.idx += 1;
|
||||
return Some((&self.params.segments[idx].0, res));
|
||||
return Some((self.params.segments[idx].0, res));
|
||||
}
|
||||
None
|
||||
}
|
||||
|
@ -212,8 +212,8 @@ impl<T: ResourcePath> Index<usize> for Path<T> {
|
|||
|
||||
fn index(&self, idx: usize) -> &str {
|
||||
match self.segments[idx].1 {
|
||||
PathItem::Static(ref s) => &s,
|
||||
PathItem::Segment(ref s) => &s,
|
||||
PathItem::Static(s) => s,
|
||||
PathItem::Segment(ref s) => s,
|
||||
PathItem::IdxSegment(s, e) => &self.path.path()[(s as usize)..(e as usize)],
|
||||
}
|
||||
}
|
||||
|
|
|
@ -260,7 +260,7 @@ impl ResourceDef {
|
|||
}
|
||||
let p = pattern.split_at(start_idx);
|
||||
pattern = p.1;
|
||||
re.push_str(&escape(&p.0));
|
||||
re.push_str(&escape(p.0));
|
||||
elems.push(PathElement::Str(p.0.to_string()));
|
||||
|
||||
// find closing }
|
||||
|
|
|
@ -447,7 +447,7 @@ impl Tree {
|
|||
if let Some(captures) = pattern.captures(seg) {
|
||||
let mut is_match = true;
|
||||
for name in names.iter() {
|
||||
if let Some(m) = captures.name(&name) {
|
||||
if let Some(m) = captures.name(name) {
|
||||
let item = if quoted {
|
||||
PathItem::Segment(m.as_str().to_string())
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue