[][src]Struct swagger::add_context::AddContextService

pub struct AddContextService<T, C> where
    C: Default + Push<XSpanIdString>,
    T: Service<Request = (Request, C::Result), Response = Response, Error = Error>, 
{ /* fields omitted */ }

Middleware wrapper service, that should be used as the outermost layer in a stack of hyper services. Adds a context to a plain hyper::Request that can be used by subsequent layers in the stack. The AddContextService struct should not usually be used directly - when constructing a hyper stack use AddContextNewService, which will create AddContextService instances as needed.

Methods

impl<T, C> AddContextService<T, C> where
    C: Default + Push<XSpanIdString>,
    T: Service<Request = (Request, C::Result), Response = Response, Error = Error>, 
[src]

Create a new AddContextService struct wrapping a value

Trait Implementations

impl<T: Debug, C: Debug> Debug for AddContextService<T, C> where
    C: Default + Push<XSpanIdString>,
    T: Service<Request = (Request, C::Result), Response = Response, Error = Error>, 
[src]

impl<T, C> Service for AddContextService<T, C> where
    C: Default + Push<XSpanIdString>,
    T: Service<Request = (Request, C::Result), Response = Response, Error = Error>, 
[src]

Requests handled by the service.

Responses given by the service.

Errors produced by the service.

The future response value.

Auto Trait Implementations

impl<T, C> Send for AddContextService<T, C> where
    C: Send,
    T: Send

impl<T, C> Sync for AddContextService<T, C> where
    C: Sync,
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T