-
Bug ReportVersion
Platform
DescriptionI have a simple axum router -
It compiles without any errors.
Compiler output -
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I guess |
Beta Was this translation helpful? Give feedback.
debug_handler
can only be used for actual handler funtions. In your case, the handler is themove || ...
closure, notroot_agg
. You would also get an error trying to passroot_agg
directly toget
.I guess
debug_handler
could be told to ignore specific function arguments, but I'm not sure whether it's worth it since it's not a very common use case.