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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.