Type Alias mas_http::ClientService

source ·
pub type ClientService<S> = SetRequestHeader<DurationRecorderService<InFlightCounterService<ConcurrencyLimit<FollowRedirect<TraceService<TraceContextService<S>, MakeSpanForRequest, EnrichSpanOnResponse, EnrichSpanOnError>>>, OnRequestLabels>, OnRequestLabels, OnResponseLabels, KeyValue>, HeaderValue>;

Aliased Type§

struct ClientService<S> { /* private fields */ }

Implementations

source§

impl<S, M> SetRequestHeader<S, M>

source

pub fn overriding( inner: S, header_name: HeaderName, make: M, ) -> SetRequestHeader<S, M>

Create a new SetRequestHeader.

If a previous value exists for the same header, it is removed and replaced with the new header value.

source

pub fn appending( inner: S, header_name: HeaderName, make: M, ) -> SetRequestHeader<S, M>

Create a new SetRequestHeader.

The new header is always added, preserving any existing values. If previous values exist, the header will have multiple values.

source

pub fn if_not_present( inner: S, header_name: HeaderName, make: M, ) -> SetRequestHeader<S, M>

Create a new SetRequestHeader.

If a previous value exists for the header, the new value is not inserted.

source

pub fn get_ref(&self) -> &S

Gets a reference to the underlying service.

source

pub fn get_mut(&mut self) -> &mut S

Gets a mutable reference to the underlying service.

source

pub fn into_inner(self) -> S

Consumes self, returning the underlying service.

Trait Implementations

source§

impl<S, M> Clone for SetRequestHeader<S, M>
where S: Clone, M: Clone,

source§

fn clone(&self) -> SetRequestHeader<S, M>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<S, M> Debug for SetRequestHeader<S, M>
where S: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<ReqBody, ResBody, S, M> Service<Request<ReqBody>> for SetRequestHeader<S, M>
where S: Service<Request<ReqBody>, Response = Response<ResBody>>, M: MakeHeaderValue<Request<ReqBody>>,

§

type Response = <S as Service<Request<ReqBody>>>::Response

Responses given by the service.
§

type Error = <S as Service<Request<ReqBody>>>::Error

Errors produced by the service.
§

type Future = <S as Service<Request<ReqBody>>>::Future

The future response value.
source§

fn poll_ready( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), <SetRequestHeader<S, M> as Service<Request<ReqBody>>>::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call( &mut self, req: Request<ReqBody>, ) -> <SetRequestHeader<S, M> as Service<Request<ReqBody>>>::Future

Process the request and return the response asynchronously. Read more