pub trait FnExt<I, E>:
Send
+ Sync
+ 'static {
type Output;
// Required method
fn call(&self, i: I) -> impl Future<Output = Self::Output> + Send;
}Expand description
A handler with extractors.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.