pub struct TracingMiddleware<S>(/* private fields */);
Trait Implementations§
Source§impl<S> Service<ConnectRequest> for TracingMiddleware<S>
impl<S> Service<ConnectRequest> for TracingMiddleware<S>
Source§type Response = ConnectResponse
type Response = ConnectResponse
Responses given by the service.
Source§type Error = SendRequestError
type Error = SendRequestError
Errors produced by the service when polling readiness or executing call.
Source§type Future = Instrumented<TracingFuture<<S as Service<ConnectRequest>>::Future>>
type Future = Instrumented<TracingFuture<<S as Service<ConnectRequest>>::Future>>
The future response value.
Auto Trait Implementations§
impl<S> Freeze for TracingMiddleware<S>where
S: Freeze,
impl<S> RefUnwindSafe for TracingMiddleware<S>where
S: RefUnwindSafe,
impl<S> Send for TracingMiddleware<S>where
S: Send,
impl<S> Sync for TracingMiddleware<S>where
S: Sync,
impl<S> Unpin for TracingMiddleware<S>where
S: Unpin,
impl<S> UnwindSafe for TracingMiddleware<S>where
S: 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> 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, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
Source§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Service
Source§impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
Source§fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
Map this service’s output to a different type, returning a new service
of the resulting type. Read more