mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-29 00:00:18 +02:00
Check Request and Path in debug_handler (#1035)
* Check `Request` and `Path` in `debug_handler` * changelog links * Include errors with the input
This commit is contained in:
@@ -407,7 +407,7 @@ where
|
||||
|
||||
fn expand_attr_with<F, A, I, K>(attr: TokenStream, input: TokenStream, f: F) -> TokenStream
|
||||
where
|
||||
F: FnOnce(A, I) -> syn::Result<K>,
|
||||
F: FnOnce(A, I) -> K,
|
||||
A: Parse,
|
||||
I: Parse,
|
||||
K: ToTokens,
|
||||
@@ -415,7 +415,7 @@ where
|
||||
let expand_result = (|| {
|
||||
let attr = syn::parse(attr)?;
|
||||
let input = syn::parse(input)?;
|
||||
f(attr, input)
|
||||
Ok(f(attr, input))
|
||||
})();
|
||||
expand(expand_result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user