[][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]

Formats the value using the given formatter. Read more

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.

Process the request and return the response asynchronously.

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, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

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.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T