pub struct AsyncRequireAuthorizationLayer<T> { /* private fields */ }
Available on crate feature
auth
only.Expand description
Layer that applies AsyncRequireAuthorization
which authorizes all requests using the
Authorization
header.
See the module docs for an example.
Implementations§
source§impl<T> AsyncRequireAuthorizationLayer<T>
impl<T> AsyncRequireAuthorizationLayer<T>
sourcepub fn new(auth: T) -> AsyncRequireAuthorizationLayer<T>
pub fn new(auth: T) -> AsyncRequireAuthorizationLayer<T>
Authorize requests using a custom scheme.
Trait Implementations§
source§impl<T: Clone> Clone for AsyncRequireAuthorizationLayer<T>
impl<T: Clone> Clone for AsyncRequireAuthorizationLayer<T>
source§fn clone(&self) -> AsyncRequireAuthorizationLayer<T>
fn clone(&self) -> AsyncRequireAuthorizationLayer<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 more