pub trait Handler: Send + Sync + 'static {
    // Required method
    fn handle<'life0, 'life1, 'async_trait>(
        &'life0 self,
        req: &'life1 mut Request
    ) -> Pin<Box<dyn Future<Output = Result<Response>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Handlers are responsible for handling requests by creating Responses from Requests.

Required Methods§

source

fn handle<'life0, 'life1, 'async_trait>( &'life0 self, req: &'life1 mut Request ) -> Pin<Box<dyn Future<Output = Result<Response>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Produce a Response from a Request, with the possibility of error.

Trait Implementations§

source§

impl Handler for Box<dyn Handler>

source§

fn handle<'life0, 'life1, 'async_trait>( &'life0 self, req: &'life1 mut Request ) -> Pin<Box<dyn Future<Output = Result<Response>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Produce a Response from a Request, with the possibility of error.

Implementations on Foreign Types§

source§

impl Handler for Box<dyn Handler>

source§

fn handle<'life0, 'life1, 'async_trait>( &'life0 self, req: &'life1 mut Request ) -> Pin<Box<dyn Future<Output = Result<Response>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§

source§

impl Handler for Chain

source§

impl<F> Handler for Fwhere F: Send + Sync + 'static + Fn(&mut Request) -> Result<Response>,