viz_core/handler/
fn_ext.rs

1/// A handler with extractors.
2pub trait FnExt<I, E>: Send + Sync + 'static {
3    /// The returned type after the call operator is used.
4    type Output;
5
6    /// Performs the call operation.
7    fn call(&self, i: I) -> impl crate::Future<Output = Self::Output> + Send;
8}