Struct actix_web::middleware::Next
source · pub struct Next<B> { /* private fields */ }
Expand description
Wraps the “next” service in the middleware chain.
Implementations§
source§impl<B> Next<B>
impl<B> Next<B>
sourcepub fn call(
&self,
req: ServiceRequest,
) -> <Self as Service<ServiceRequest>>::Future
pub fn call( &self, req: ServiceRequest, ) -> <Self as Service<ServiceRequest>>::Future
Equivalent to Service::call(self, req)
.
Trait Implementations§
source§impl<B> Service<ServiceRequest> for Next<B>
impl<B> Service<ServiceRequest> for Next<B>
§type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses given by the service.
§type Future = Pin<Box<dyn Future<Output = Result<<Next<B> as Service<ServiceRequest>>::Response, <Next<B> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<Next<B> as Service<ServiceRequest>>::Response, <Next<B> as Service<ServiceRequest>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl<B> Freeze for Next<B>
impl<B> !RefUnwindSafe for Next<B>
impl<B> !Send for Next<B>
impl<B> !Sync for Next<B>
impl<B> Unpin for Next<B>
impl<B> !UnwindSafe for Next<B>
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