pub struct SetRequestId<S, M> { /* private fields */ }
Available on crate feature
request-id
only.Expand description
Set request id headers and extensions on requests.
See the module docs for an example.
If MakeRequestId::make_request_id
returns Some(_)
and the request doesn’t already have a
header with the same name, then the header will be inserted.
Additionally RequestId
will be inserted into Request::extensions
so other
services can access it.
Implementations§
Source§impl<S, M> SetRequestId<S, M>
impl<S, M> SetRequestId<S, M>
Sourcepub fn new(inner: S, header_name: HeaderName, make_request_id: M) -> Selfwhere
M: MakeRequestId,
pub fn new(inner: S, header_name: HeaderName, make_request_id: M) -> Selfwhere
M: MakeRequestId,
Create a new SetRequestId
.
Sourcepub fn x_request_id(inner: S, make_request_id: M) -> Selfwhere
M: MakeRequestId,
pub fn x_request_id(inner: S, make_request_id: M) -> Selfwhere
M: MakeRequestId,
Create a new SetRequestId
that uses x-request-id
as the header name.
Sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self
, returning the underlying service.
Sourcepub fn layer(
header_name: HeaderName,
make_request_id: M,
) -> SetRequestIdLayer<M>where
M: MakeRequestId,
pub fn layer(
header_name: HeaderName,
make_request_id: M,
) -> SetRequestIdLayer<M>where
M: MakeRequestId,
Returns a new Layer
that wraps services with a SetRequestId
middleware.
Trait Implementations§
Source§impl<S: Clone, M: Clone> Clone for SetRequestId<S, M>
impl<S: Clone, M: Clone> Clone for SetRequestId<S, M>
Source§fn clone(&self) -> SetRequestId<S, M>
fn clone(&self) -> SetRequestId<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 moreAuto Trait Implementations§
impl<S, M> !Freeze for SetRequestId<S, M>
impl<S, M> RefUnwindSafe for SetRequestId<S, M>where
S: RefUnwindSafe,
M: RefUnwindSafe,
impl<S, M> Send for SetRequestId<S, M>
impl<S, M> Sync for SetRequestId<S, M>
impl<S, M> Unpin for SetRequestId<S, M>
impl<S, M> UnwindSafe for SetRequestId<S, M>where
S: UnwindSafe,
M: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T, Request> ServiceExt<Request> for T
impl<T, Request> ServiceExt<Request> for T
Source§fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
fn ready(&mut self) -> Ready<'_, Self, Request>where
Self: Sized,
Yields a mutable reference to the service when it is ready to accept a request.
Source§fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
fn ready_oneshot(self) -> ReadyOneshot<Self, Request>where
Self: Sized,
Yields the service when it is ready to accept a request.
Source§fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
fn oneshot(self, req: Request) -> Oneshot<Self, Request>where
Self: Sized,
Consume this
Service
, calling it with the provided request once it is ready.Source§fn and_then<F>(self, f: F) -> AndThen<Self, F>
fn and_then<F>(self, f: F) -> AndThen<Self, F>
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the
poll_ready
method. Read moreSource§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
Maps this service’s response value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read moreSource§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
Maps this service’s error value to a different value. This does not
alter the behaviour of the
poll_ready
method. Read moreSource§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
Maps this service’s result type (
Result<Self::Response, Self::Error>
)
to a different value, regardless of whether the future succeeds or
fails. Read moreSource§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
Composes a function in front of the service. Read more
Source§fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
Composes an asynchronous function after this service. Read more
Source§fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
Composes a function that transforms futures produced by the service. Read more