pub struct AuthenticationMiddleware<S, GT: GetLoginRoute> { /* private fields */ }
Expand description
Authentication middleware
Trait Implementations
sourceimpl<S, GT> Service<ServiceRequest> for AuthenticationMiddleware<S, GT> where
S: Service<ServiceRequest, Response = ServiceResponse<BoxBody>, Error = Error>,
S::Future: 'static,
GT: GetLoginRoute,
impl<S, GT> Service<ServiceRequest> for AuthenticationMiddleware<S, GT> where
S: Service<ServiceRequest, Response = ServiceResponse<BoxBody>, Error = Error>,
S::Future: 'static,
GT: GetLoginRoute,
type Response = ServiceResponse<BoxBody>
type Response = ServiceResponse<BoxBody>
Responses given by the service.
type Error = Error
type Error = Error
Errors produced by the service when polling readiness or executing call.
type Future = Either<S::Future, Ready<Result<Self::Response, Self::Error>>>
type Future = Either<S::Future, Ready<Result<Self::Response, Self::Error>>>
The future response value.
Auto Trait Implementations
impl<S, GT> RefUnwindSafe for AuthenticationMiddleware<S, GT> where
GT: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, GT> !Send for AuthenticationMiddleware<S, GT>
impl<S, GT> !Sync for AuthenticationMiddleware<S, GT>
impl<S, GT> Unpin for AuthenticationMiddleware<S, GT> where
S: Unpin,
impl<S, GT> UnwindSafe for AuthenticationMiddleware<S, GT> where
GT: RefUnwindSafe,
S: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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>,
pub fn into_service(self) -> S
pub 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>,
pub 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