Struct actix_jwt_session::RedisMiddleware
source · pub struct RedisMiddleware<S, ClaimsType>where
ClaimsType: Claims,{ /* private fields */ }Trait Implementations§
source§impl<S, B, ClaimsType> Service<ServiceRequest> for RedisMiddleware<S, ClaimsType>where
ClaimsType: Claims,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
impl<S, B, ClaimsType> Service<ServiceRequest> for RedisMiddleware<S, ClaimsType>where ClaimsType: Claims, S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
§type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses given by the service.
§type Future = Pin<Box<dyn Future<Output = Result<<RedisMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Response, <RedisMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Error>>, Global>>
type Future = Pin<Box<dyn Future<Output = Result<<RedisMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Response, <RedisMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Error>>, Global>>
The future response value.
source§fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
Returns
Ready when the service is able to process requests. Read moresource§fn call(&self, req: ServiceRequest) -> Self::Future
fn call(&self, req: ServiceRequest) -> Self::Future
Process the request and return the response asynchronously. Read more
Auto Trait Implementations§
impl<S, ClaimsType> !RefUnwindSafe for RedisMiddleware<S, ClaimsType>
impl<S, ClaimsType> !Send for RedisMiddleware<S, ClaimsType>
impl<S, ClaimsType> !Sync for RedisMiddleware<S, ClaimsType>
impl<S, ClaimsType> Unpin for RedisMiddleware<S, ClaimsType>where ClaimsType: Unpin,
impl<S, ClaimsType> !UnwindSafe for RedisMiddleware<S, ClaimsType>
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>
§impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere S: Service<Req>,
§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Service§impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for Swhere S: Service<Req>,
§fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>where
Self: Sized,
F: FnMut(Self::Response) -> R,
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>where Self: Sized, F: FnMut(Self::Response) -> R,
Map this service’s output to a different type, returning a new service
of the resulting type. Read more