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>
impl<S, M> SetRequestHeader<S, M>
sourcepub fn overriding(
inner: S,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<S, M>
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.
sourcepub fn appending(
inner: S,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<S, M>
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.
sourcepub fn if_not_present(
inner: S,
header_name: HeaderName,
make: M,
) -> SetRequestHeader<S, M>
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.
sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self
, returning the underlying service.
Trait Implementations
source§impl<S, M> Clone for SetRequestHeader<S, M>
impl<S, M> Clone for SetRequestHeader<S, M>
source§fn clone(&self) -> SetRequestHeader<S, M>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more