Trait ntex::web::Handler[][src]

pub trait Handler<T, Err>: Clone + 'static where
    Err: ErrorRenderer
{ type Output: Responder<Err>; type Future: Future<Output = Self::Output> + 'static; fn call(&self, param: T) -> Self::Future; }
Expand description

Async fn handler

Associated Types

Required methods

Implementors