Type Definition viz::BoxHandler

source ·
pub type BoxHandler<I = Request<Body>, O = Result<Response<Body>, Error>> = Box<dyn Handler<I, Output = O> + 'static, Global>;
Expand description

Alias the boxed Handler.