pub struct BearerAuthMiddleware<S, T> { /* private fields */ }Trait Implementations§
Source§impl<S, B, T> Service<ServiceRequest> for BearerAuthMiddleware<S, T>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: MessageBody + 'static,
T: Clone + 'static,
impl<S, B, T> Service<ServiceRequest> for BearerAuthMiddleware<S, T>where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: MessageBody + 'static,
T: Clone + 'static,
Source§type Response = ServiceResponse<EitherBody<B>>
type Response = ServiceResponse<EitherBody<B>>
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<BearerAuthMiddleware<S, T> as Service<ServiceRequest>>::Response, <BearerAuthMiddleware<S, T> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<BearerAuthMiddleware<S, T> as Service<ServiceRequest>>::Response, <BearerAuthMiddleware<S, T> as Service<ServiceRequest>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl<S, T> !Freeze for BearerAuthMiddleware<S, T>
impl<S, T> !RefUnwindSafe for BearerAuthMiddleware<S, T>
impl<S, T> !UnwindSafe for BearerAuthMiddleware<S, T>
impl<S, T> Send for BearerAuthMiddleware<S, T>where
S: Send,
impl<S, T> Sync for BearerAuthMiddleware<S, T>where
S: Sync,
impl<S, T> Unpin for BearerAuthMiddleware<S, T>where
S: Unpin,
impl<S, T> UnsafeUnpin for BearerAuthMiddleware<S, T>where
S: UnsafeUnpin,
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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
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<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§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
ServiceSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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