[][src]Struct swagger::add_context::AddContextNewService

pub struct AddContextNewService<T, C> where
    C: Default + Push<XSpanIdString>,
    T: NewService<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.

Methods

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

Create a new AddContextNewService struct wrapping a value

Trait Implementations

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

Formats the value using the given formatter. Read more

impl<T, C> NewService for AddContextNewService<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

Create and return a new service value.

Auto Trait Implementations

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

impl<T, C> Sync for AddContextNewService<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, 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<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

Create and return a new service value.

impl<T> Erased for T