pub struct SentryMiddleware<S> { /* private fields */ }
Available on crate feature
actix
only.Expand description
The middleware for individual services.
Trait Implementations§
Source§impl<S, B> Service<ServiceRequest> for SentryMiddleware<S>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
<S as Service<ServiceRequest>>::Future: 'static,
impl<S, B> Service<ServiceRequest> for SentryMiddleware<S>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
<S as Service<ServiceRequest>>::Future: 'static,
Source§type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<SentryMiddleware<S> as Service<ServiceRequest>>::Response, <SentryMiddleware<S> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<SentryMiddleware<S> as Service<ServiceRequest>>::Response, <SentryMiddleware<S> as Service<ServiceRequest>>::Error>>>>
The future response value.
Source§fn poll_ready(
&self,
cx: &mut Context<'_>,
) -> Poll<Result<(), <SentryMiddleware<S> as Service<ServiceRequest>>::Error>>
fn poll_ready( &self, cx: &mut Context<'_>, ) -> Poll<Result<(), <SentryMiddleware<S> as Service<ServiceRequest>>::Error>>
Returns
Ready
when the service is able to process requests. Read moreSource§fn call(
&self,
req: ServiceRequest,
) -> <SentryMiddleware<S> as Service<ServiceRequest>>::Future
fn call( &self, req: ServiceRequest, ) -> <SentryMiddleware<S> as Service<ServiceRequest>>::Future
Process the request and return the response asynchronously. Read more
Auto Trait Implementations§
impl<S> Freeze for SentryMiddleware<S>
impl<S> RefUnwindSafe for SentryMiddleware<S>where
S: RefUnwindSafe,
impl<S> !Send for SentryMiddleware<S>
impl<S> !Sync for SentryMiddleware<S>
impl<S> Unpin for SentryMiddleware<S>
impl<S> UnwindSafe for SentryMiddleware<S>where
S: RefUnwindSafe,
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> 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, 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