pub struct AddExtension<S, T> { /* private fields */ }
Expand description
Middleware for adding some shareable value to incoming Context.
Implementations§
Source§impl<S, T> AddExtension<S, T>
impl<S, T> AddExtension<S, T>
Sourcepub const fn new(inner: S, value: T) -> Self
pub const fn new(inner: S, value: T) -> Self
Create a new AddExtension
.
Sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self
, returning the underlying service.
Trait Implementations§
Source§impl<S, T> Clone for AddExtension<S, T>
impl<S, T> Clone for AddExtension<S, T>
Source§impl<State, Request, S, T> Service<State, Request> for AddExtension<S, T>
impl<State, Request, S, T> Service<State, Request> for AddExtension<S, T>
Source§type Response = <S as Service<State, Request>>::Response
type Response = <S as Service<State, Request>>::Response
The type of response returned by the service.
Auto Trait Implementations§
impl<S, T> Freeze for AddExtension<S, T>
impl<S, T> RefUnwindSafe for AddExtension<S, T>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for AddExtension<S, T>
impl<S, T> Sync for AddExtension<S, T>
impl<S, T> Unpin for AddExtension<S, T>
impl<S, T> UnwindSafe for AddExtension<S, T>where
S: UnwindSafe,
T: 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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
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<S, StateIn, StateOut, RequestIn, RequestOut> RequestInspector<StateIn, RequestIn> for S
impl<S, StateIn, StateOut, RequestIn, RequestOut> RequestInspector<StateIn, RequestIn> for S
Source§type Error = <S as Service<StateIn, RequestIn>>::Error
type Error = <S as Service<StateIn, RequestIn>>::Error
The type of error returned by the service.
type RequestOut = RequestOut
type StateOut = StateOut
Source§fn inspect_request(
&self,
ctx: Context<StateIn>,
req: RequestIn,
) -> impl Future<Output = Result<(Context<<S as RequestInspector<StateIn, RequestIn>>::StateOut>, <S as RequestInspector<StateIn, RequestIn>>::RequestOut), <S as RequestInspector<StateIn, RequestIn>>::Error>> + Send
fn inspect_request( &self, ctx: Context<StateIn>, req: RequestIn, ) -> impl Future<Output = Result<(Context<<S as RequestInspector<StateIn, RequestIn>>::StateOut>, <S as RequestInspector<StateIn, RequestIn>>::RequestOut), <S as RequestInspector<StateIn, RequestIn>>::Error>> + Send
Inspect the request, modify it if needed or desired, and return it.