pub trait EndpointExt<S>: for<'a> Endpoint<'a, S> {
    fn boxed(self) -> Boxed<S>
    where
        S: 'static
, { ... } }
Expand description

Extra methods of endpoint.

Provided methods

Box an endpoint.

Implementors