我想把axum::middleware::from_fn 这个函数作为另一个函数的返回值返回 #1886
-
我想把axum::middleware::from_fn 这个函数作为另一个函数的返回值返回I want to return the function axum::middleware::from_fn as the return value of another function
|
Beta Was this translation helpful? Give feedback.
Answered by
davidpdrsn
Mar 26, 2023
Replies: 1 comment 1 reply
-
You can't easily do that. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
igufei
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't easily do that.
async {}
returns an unnameable future type. I'd recommend using https://docs.rs/axum/latest/axum/middleware/fn.from_fn_with_state.html instead.