[][src]Trait saphir::controller::DynControllerHandler

pub trait DynControllerHandler<C, B> {
    fn dyn_handle(
        &self,
        controller: &'static C,
        req: Request<B>
    ) -> BoxFuture<'static, Box<dyn DynResponder + Send>>; }

Required methods

fn dyn_handle(
    &self,
    controller: &'static C,
    req: Request<B>
) -> BoxFuture<'static, Box<dyn DynResponder + Send>>

Loading content...

Implementors

impl<C, T, H, Fut, R> DynControllerHandler<C, T> for H where
    R: 'static + Responder + Send,
    Fut: 'static + Future<Output = R> + Unpin + Send,
    H: ControllerHandler<C, T, Future = Fut, Responder = R>, 
[src]

Loading content...