Struct hyper_simple_server::HandlerWrapper[][src]

pub struct HandlerWrapper<H: Handler>(_);

Trait Implementations

impl<H> Service<Request<Body>> for HandlerWrapper<H> where
    H: Handler
[src]

type Future = H::Future

The future response value.

type Response = Response<H::ResponseBody>

Responses given by the service.

type Error = ServerError

Errors produced by the service.

Auto Trait Implementations

impl<H> RefUnwindSafe for HandlerWrapper<H> where
    H: RefUnwindSafe
[src]

impl<H> Send for HandlerWrapper<H>[src]

impl<H> Sync for HandlerWrapper<H>[src]

impl<H> Unpin for HandlerWrapper<H> where
    H: Unpin
[src]

impl<H> UnwindSafe for HandlerWrapper<H> where
    H: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.