mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Fix clippy warnings
This commit is contained in:
parent
1c5ab68df6
commit
2cbc42730b
2 changed files with 3 additions and 7 deletions
|
@ -502,11 +502,6 @@ mod tests {
|
|||
value: String,
|
||||
}
|
||||
|
||||
#[derive(Deserialize)]
|
||||
struct Id {
|
||||
_id: String,
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct Test1(String, u32);
|
||||
|
||||
|
|
|
@ -306,7 +306,7 @@ impl ResourceDef {
|
|||
|
||||
elems.push(PathElement::Var(name.to_string()));
|
||||
|
||||
if let Some(idx) = rem.find(|c| c == '{' || c == '/') {
|
||||
if let Some(idx) = rem.find(['{', '/']) {
|
||||
end = Some(idx);
|
||||
pattern = rem;
|
||||
continue;
|
||||
|
@ -346,7 +346,7 @@ impl ResourceDef {
|
|||
|
||||
loop {
|
||||
let start = usize::from(pattern.starts_with('/'));
|
||||
let idx = if let Some(idx) = pattern[start..].find(|c| c == '{' || c == '/') {
|
||||
let idx = if let Some(idx) = pattern[start..].find(['{', '/']) {
|
||||
idx + start
|
||||
} else {
|
||||
break;
|
||||
|
@ -710,6 +710,7 @@ mod tests {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[allow(clippy::mutable_key_type)]
|
||||
fn test_def() {
|
||||
let re = ResourceDef::new("/user/-{id}*");
|
||||
assert_eq!(re, ResourceDef::from("/user/-{id}*"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue