Struct shc_lib::notifier::RequestNotifierMiddleware
source · pub struct RequestNotifierMiddleware<S> { /* private fields */ }Trait Implementations§
source§impl<S, B> Service<ServiceRequest> for RequestNotifierMiddleware<S>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
impl<S, B> Service<ServiceRequest> for RequestNotifierMiddleware<S>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
source§type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses given by the service.
source§type Future = Pin<Box<dyn Future<Output = Result<<RequestNotifierMiddleware<S> as Service<ServiceRequest>>::Response, <RequestNotifierMiddleware<S> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<RequestNotifierMiddleware<S> as Service<ServiceRequest>>::Response, <RequestNotifierMiddleware<S> as Service<ServiceRequest>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl<S> Freeze for RequestNotifierMiddleware<S>
impl<S> !RefUnwindSafe for RequestNotifierMiddleware<S>
impl<S> !Send for RequestNotifierMiddleware<S>
impl<S> !Sync for RequestNotifierMiddleware<S>
impl<S> Unpin for RequestNotifierMiddleware<S>
impl<S> !UnwindSafe for RequestNotifierMiddleware<S>
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
Servicesource§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