fixed clippy warnings

This commit is contained in:
sheshnath-at-knoldus 2024-08-01 18:39:08 +05:30
parent 4eb6cdf8fb
commit 9fa19570a1
1 changed files with 6 additions and 2 deletions

View File

@ -266,8 +266,12 @@ fn internal_uri_macro_decl(route: &Route) -> TokenStream {
route.attr.method.0.hash(&mut hasher);
route.attr.uri.path().hash(&mut hasher);
route.attr.uri.query().hash(&mut hasher);
route.attr.data.as_ref().map(|d| d.value.hash(&mut hasher));
route.attr.format.as_ref().map(|f| f.0.hash(&mut hasher));
if let Some(data) = &route.attr.data {
data.value.hash(&mut hasher);
}
if let Some(format) = &route.attr.format {
format.0.hash(&mut hasher);
}
});
let route_uri = route.attr.uri.to_string();