pub struct AsyncRequireAuthorization<S, T> { /* private fields */ }
Expand description
Middleware that authorizes all requests using the Authorization
header.
See the module docs for an example.
Implementations§
source§impl<S, T> AsyncRequireAuthorization<S, T>
impl<S, T> AsyncRequireAuthorization<S, T>
source§impl<S, T> AsyncRequireAuthorization<S, T>
impl<S, T> AsyncRequireAuthorization<S, T>
sourcepub fn new(inner: S, auth: T) -> AsyncRequireAuthorization<S, T>
pub fn new(inner: S, auth: T) -> AsyncRequireAuthorization<S, T>
Authorize requests using a custom scheme.
The Authorization
header is required to have the value provided.
sourcepub fn layer(auth: T) -> AsyncRequireAuthorizationLayer<T>
pub fn layer(auth: T) -> AsyncRequireAuthorizationLayer<T>
Returns a new Layer
that wraps services with an AsyncRequireAuthorizationLayer
middleware.
Trait Implementations§
source§impl<S: Clone, T: Clone> Clone for AsyncRequireAuthorization<S, T>
impl<S: Clone, T: Clone> Clone for AsyncRequireAuthorization<S, T>
source§fn clone(&self) -> AsyncRequireAuthorization<S, T>
fn clone(&self) -> AsyncRequireAuthorization<S, T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<ReqBody, ResBody, S, Auth> Service<Request<ReqBody>> for AsyncRequireAuthorization<S, Auth>where
Auth: AsyncAuthorizeRequest<ReqBody, ResponseBody = ResBody>,
S: Service<Request<Auth::RequestBody>, Response = Response<ResBody>> + Clone,
impl<ReqBody, ResBody, S, Auth> Service<Request<ReqBody>> for AsyncRequireAuthorization<S, Auth>where
Auth: AsyncAuthorizeRequest<ReqBody, ResponseBody = ResBody>,
S: Service<Request<Auth::RequestBody>, Response = Response<ResBody>> + Clone,
source§type Error = <S as Service<Request<<Auth as AsyncAuthorizeRequest<ReqBody>>::RequestBody>>>::Error
type Error = <S as Service<Request<<Auth as AsyncAuthorizeRequest<ReqBody>>::RequestBody>>>::Error
Errors produced by the service.
source§type Future = ResponseFuture<Auth, S, ReqBody>
type Future = ResponseFuture<Auth, S, ReqBody>
The future response value.
Auto Trait Implementations§
impl<S, T> Freeze for AsyncRequireAuthorization<S, T>
impl<S, T> RefUnwindSafe for AsyncRequireAuthorization<S, T>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for AsyncRequireAuthorization<S, T>
impl<S, T> Sync for AsyncRequireAuthorization<S, T>
impl<S, T> Unpin for AsyncRequireAuthorization<S, T>
impl<S, T> UnwindSafe for AsyncRequireAuthorization<S, T>where
S: UnwindSafe,
T: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)