pub trait BoxService<Request, Response, E> {
    // Required method
    fn into_boxed(self) -> BoxedService<Request, Response, E>;
}

Required Methods§

source

fn into_boxed(self) -> BoxedService<Request, Response, E>

Implementors§

source§

impl<T, Request, Response, E> BoxService<Request, Response, E> for T
where T: Service<Request, Response = Response, Error = E> + 'static, Request: 'static,