pub struct ChimesAuthenticationMiddleware<S, T, P> { /* private fields */ }Trait Implementations
sourceimpl<S, T, P, B> Service<ServiceRequest> for ChimesAuthenticationMiddleware<S, T, P> where
S: Service<ServiceRequest, Response = ServiceResponse<EitherBody<B>>, Error = Error> + 'static,
S::Future: 'static,
B: MessageBody + 'static,
T: Sized + ChimesAuthUser<T> + DeserializeOwned,
P: Sized + ChimesAuthService<T> + 'static,
impl<S, T, P, B> Service<ServiceRequest> for ChimesAuthenticationMiddleware<S, T, P> where
S: Service<ServiceRequest, Response = ServiceResponse<EitherBody<B>>, Error = Error> + 'static,
S::Future: 'static,
B: MessageBody + 'static,
T: Sized + ChimesAuthUser<T> + DeserializeOwned,
P: Sized + ChimesAuthService<T> + 'static,
type Response = ServiceResponse<EitherBody<B, BoxBody>>
type Response = ServiceResponse<EitherBody<B, BoxBody>>
Responses given by the service.
type Future = Pin<Box<dyn Future<Output = Result<<ChimesAuthenticationMiddleware<S, T, P> as Service<ServiceRequest>>::Response, <ChimesAuthenticationMiddleware<S, T, P> as Service<ServiceRequest>>::Error>> + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = Result<<ChimesAuthenticationMiddleware<S, T, P> as Service<ServiceRequest>>::Response, <ChimesAuthenticationMiddleware<S, T, P> as Service<ServiceRequest>>::Error>> + 'static, Global>>
The future response value.
sourcefn poll_ready(
self: &ChimesAuthenticationMiddleware<S, T, P>,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
fn poll_ready(
self: &ChimesAuthenticationMiddleware<S, T, P>,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
Returns Ready when the service is able to process requests. Read more
sourcefn 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, T, P> !RefUnwindSafe for ChimesAuthenticationMiddleware<S, T, P>
impl<S, T, P> !Send for ChimesAuthenticationMiddleware<S, T, P>
impl<S, T, P> !Sync for ChimesAuthenticationMiddleware<S, T, P>
impl<S, T, P> Unpin for ChimesAuthenticationMiddleware<S, T, P> where
T: Unpin,
impl<S, T, P> !UnwindSafe for ChimesAuthenticationMiddleware<S, T, P>
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