[][src]Struct openapi_context::drop_context::DropContextService

pub struct DropContextService<T, C> { /* fields omitted */ }

Swagger Middleware that wraps a hyper::service::Service, and drops any contextual information on the request. Services will normally want to use DropContextMakeService, which will create a DropContextService to handle each connection.

Methods

impl<T, C> DropContextService<T, C>[src]

pub fn new(inner: T) -> Self[src]

Create a new AddContextService struct wrapping a value

Trait Implementations

impl<T: Debug, C: Debug> Debug for DropContextService<T, C>[src]

impl<T, C> Service<ContextualPayload<C>> for DropContextService<T, C> where
    C: Send + Sync + 'static,
    T: Service<Request<Body>>, 
[src]

type Response = T::Response

Responses given by the service.

type Error = T::Error

Errors produced by the service.

type Future = T::Future

The future response value.

Auto Trait Implementations

impl<T, C> RefUnwindSafe for DropContextService<T, C> where
    C: RefUnwindSafe,
    T: RefUnwindSafe

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

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

impl<T, C> Unpin for DropContextService<T, C> where
    C: Unpin,
    T: Unpin

impl<T, C> UnwindSafe for DropContextService<T, C> where
    C: UnwindSafe,
    T: UnwindSafe

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.