pub struct MiddlewareService<S, F> { /* private fields */ }
Available on crate feature
csrf
only.Trait Implementations§
Source§impl<S, B, F, Fut> Service<ServiceRequest> for MiddlewareService<S, F>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
F: Fn(HttpRequest, String) -> Fut + 'static,
Fut: Future<Output = Result<bool, Error>>,
impl<S, B, F, Fut> Service<ServiceRequest> for MiddlewareService<S, F>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
F: Fn(HttpRequest, String) -> Fut + 'static,
Fut: Future<Output = Result<bool, Error>>,
Source§type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<MiddlewareService<S, F> as Service<ServiceRequest>>::Response, <MiddlewareService<S, F> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<MiddlewareService<S, F> as Service<ServiceRequest>>::Response, <MiddlewareService<S, F> as Service<ServiceRequest>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl<S, F> Freeze for MiddlewareService<S, F>
impl<S, F> RefUnwindSafe for MiddlewareService<S, F>where
S: RefUnwindSafe,
F: RefUnwindSafe,
impl<S, F> !Send for MiddlewareService<S, F>
impl<S, F> !Sync for MiddlewareService<S, F>
impl<S, F> Unpin for MiddlewareService<S, F>
impl<S, F> UnwindSafe for MiddlewareService<S, F>where
S: RefUnwindSafe,
F: 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> 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