[][src]Struct swagger::add_context::AddContext

pub struct AddContext<T, C> where
    C: Default + Push<XSpanIdString>, 
{ /* fields omitted */ }
Deprecating in 2.0.0

: Replace with AddContextNewService or AddContextService

DEPRECATED - USE AddContextNewService AND AddContextService INSTEAD 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.

Methods

impl<T, C> AddContext<T, C> where
    C: Default + Push<XSpanIdString>, 
[src]

Create a new AddContext struct wrapping a value

Trait Implementations

impl<T: Debug, C: Debug> Debug for AddContext<T, C> where
    C: Default + Push<XSpanIdString>, 
[src]

impl<T, C> Service for AddContext<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.

impl<T, C> NewService for AddContext<T, C> where
    C: Default + Push<XSpanIdString>,
    T: NewService<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 Service value created by this factory

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U, V, W> BoxedNewService for T where
    T: NewService<Request = U, Response = V, Error = W>,
    <T as NewService>::Instance: Service,
    <T as NewService>::Instance: 'static,
    <<T as NewService>::Instance as Service>::Future == Box<dyn Future<Item = V, Error = W> + 'static>, 
[src]

Call the new_service method of the wrapped NewService and Box the result

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<F, R> NewService for F where
    F: Fn() -> Result<R, Error>,
    R: Service, 

Requests handled by the service

Responses given by the service

Errors produced by the service

The Service value created by this factory

impl<T> Erased for T