Struct actix_jwt_authc::AuthenticateMiddleware
source · [−]pub struct AuthenticateMiddleware<S, ClaimsType> { /* private fields */ }
Expand description
The actual middleware that extracts JWTs from requests, validates them, and injects them into a request.
Trait Implementations
sourceimpl<S, B, ClaimsType> Service<ServiceRequest> for AuthenticateMiddleware<S, ClaimsType> where
ClaimsType: DeserializeOwned + 'static,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
impl<S, B, ClaimsType> Service<ServiceRequest> for AuthenticateMiddleware<S, ClaimsType> where
ClaimsType: DeserializeOwned + 'static,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses given by the service.
type Error = Error
type Error = Error
Errors produced by the service when polling readiness or executing call.
type Future = Pin<Box<dyn Future<Output = Result<<AuthenticateMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Response, <AuthenticateMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Error>> + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = Result<<AuthenticateMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Response, <AuthenticateMiddleware<S, ClaimsType> as Service<ServiceRequest>>::Error>> + 'static, Global>>
The future response value.
Auto Trait Implementations
impl<S, ClaimsType> !RefUnwindSafe for AuthenticateMiddleware<S, ClaimsType>
impl<S, ClaimsType> !Send for AuthenticateMiddleware<S, ClaimsType>
impl<S, ClaimsType> !Sync for AuthenticateMiddleware<S, ClaimsType>
impl<S, ClaimsType> Unpin for AuthenticateMiddleware<S, ClaimsType> where
ClaimsType: Unpin,
impl<S, ClaimsType> !UnwindSafe for AuthenticateMiddleware<S, ClaimsType>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<S, Req> IntoService<S, Req> for S where
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for S where
S: Service<Req>,
fn into_service(self) -> S
fn into_service(self) -> S
Convert to a Service
impl<S, Req> ServiceExt<Req> for S where
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for S where
S: Service<Req>,
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R> where
F: FnMut(Self::Response) -> R,
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R> where
F: FnMut(Self::Response) -> R,
Map this service’s output to a different type, returning a new service of the resulting type. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more