warp::reply::sealed

Trait BoxedReply

source
pub trait BoxedReply {
    // Required method
    fn boxed_into_response(self: Box<Self>, internal: Internal) -> Response;
}

Required Methods§

source

fn boxed_into_response(self: Box<Self>, internal: Internal) -> Response

Implementors§

source§

impl<T: Reply> BoxedReply for T