[][src]Struct swagger::drop_context::DropContextService

pub struct DropContextService<T, C> where
    C: Send + 'static, 
{ /* fields omitted */ }

Swagger Middleware that wraps a hyper::service::Service or a swagger::client::Service, and drops any contextual information on the request. Servers will normally want to use DropContextMakeService, which will create a DropContextService to handle each connection, while clients can simply wrap a hyper::Client in the middleware.

Client Usage

This code runs with edition 2018

let client = hyper::Client::new();
let client = DropContextService::new(client);
let body = ContextualPayload { inner: hyper::Body::empty(), context: "Some Context".to_string() };
let request = hyper::Request::get("http://www.google.com").body(body).unwrap();

let response = client.request(request);

Methods

impl<T, C> DropContextService<T, C> where
    C: Send + 'static, 
[src]

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

Create a new DropContextService struct wrapping a value

Trait Implementations

impl<T: Clone, C: Clone> Clone for DropContextService<T, C> where
    C: Send + 'static, 
[src]

impl<T: Debug, C: Debug> Debug for DropContextService<T, C> where
    C: Send + 'static, 
[src]

impl<T, C> Service for DropContextService<T, C> where
    C: Send + 'static,
    T: Service<ReqBody = Body>, 
[src]

type ReqBody = ContextualPayload<Body, C>

Request body taken by client. Likely either hyper::Body, hyper::Chunk or swagger::ContextualPayload. Read more

type Future = T::Future

Future response from client service. Likely: Future<Item=hyper::Response<hyper::Body>, Error=hyper::Error> Read more

impl<T, C> Service for DropContextService<T, C> where
    C: Send + 'static,
    T: Service<ReqBody = Body, ResBody = Body, Error = Error>, 
[src]

type ReqBody = ContextualPayload<Body, C>

The Payload body of the http::Request.

type ResBody = Body

The Payload body of the http::Response.

type Error = Error

The error type that can occur within this Service. Read more

type Future = T::Future

The Future returned by this Service.

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

impl<T, C> SwaggerService<C> for T where
    C: Has<Option<AuthData>> + Has<Option<Authorization>> + Has<XSpanIdString> + Clone + 'static + Send,
    T: Clone + Service<ReqBody = ContextualPayload<Body, C>, ResBody = Body, Error = Error, Future = Box<dyn Future<Item = Response<Body>, Error = Error> + 'static + Send>>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.