pub struct HttpAuthorizer<A, C> { /* private fields */ }Expand description
Utility type to allow you to use any Authorizer
that works with Credentials to authorize the Authorization header,
and return StatusCode::UNAUTHORIZED response with header::WWW_AUTHENTICATE for unauthorized request,
tracing the original error for your convenience.
Implementations§
Source§impl<A, C> HttpAuthorizer<A, C>
impl<A, C> HttpAuthorizer<A, C>
pub fn new(authorizer: A) -> Self
Sourcepub fn with_allow_anonymous(self, allow: bool) -> Self
pub fn with_allow_anonymous(self, allow: bool) -> Self
Defines whether or not to allow anonymous.
This means that the request is will be authorized automatically,
if no Authorization header was passed in.
Sourcepub fn set_allow_anonymous(&mut self, allow: bool) -> &mut Self
pub fn set_allow_anonymous(&mut self, allow: bool) -> &mut Self
Defines whether or not to allow anonymous.
This means that the request is will be authorized automatically,
if no Authorization header was passed in.
Trait Implementations§
Source§impl<A, C> Authorizer<C> for HttpAuthorizer<A, C>
impl<A, C> Authorizer<C> for HttpAuthorizer<A, C>
Source§impl<A: Clone, C> Clone for HttpAuthorizer<A, C>
impl<A: Clone, C> Clone for HttpAuthorizer<A, C>
Source§impl<A: Debug, C> Debug for HttpAuthorizer<A, C>
impl<A: Debug, C> Debug for HttpAuthorizer<A, C>
Source§impl From<Basic> for HttpAuthorizer<StaticAuthorizer<Basic>, Basic>
impl From<Basic> for HttpAuthorizer<StaticAuthorizer<Basic>, Basic>
Source§impl From<Bearer> for HttpAuthorizer<StaticAuthorizer<Bearer>, Bearer>
impl From<Bearer> for HttpAuthorizer<StaticAuthorizer<Bearer>, Bearer>
Source§impl From<RawToken> for HttpAuthorizer<StaticAuthorizer<RawToken>, RawToken>
impl From<RawToken> for HttpAuthorizer<StaticAuthorizer<RawToken>, RawToken>
Source§impl<C: Credentials> From<Vec<C>> for HttpAuthorizer<Vec<C>, C>
impl<C: Credentials> From<Vec<C>> for HttpAuthorizer<Vec<C>, C>
Source§impl<const N: usize, C: Credentials> From<[C; N]> for HttpAuthorizer<[C; N], C>
impl<const N: usize, C: Credentials> From<[C; N]> for HttpAuthorizer<[C; N], C>
Source§impl<ReqBody, A, C> ValidateRequest<ReqBody> for HttpAuthorizer<A, C>
impl<ReqBody, A, C> ValidateRequest<ReqBody> for HttpAuthorizer<A, C>
Auto Trait Implementations§
impl<A, C> Freeze for HttpAuthorizer<A, C>where
A: Freeze,
impl<A, C> RefUnwindSafe for HttpAuthorizer<A, C>where
A: RefUnwindSafe,
impl<A, C> Send for HttpAuthorizer<A, C>where
A: Send,
impl<A, C> Sync for HttpAuthorizer<A, C>where
A: Sync,
impl<A, C> Unpin for HttpAuthorizer<A, C>where
A: Unpin,
impl<A, C> UnsafeUnpin for HttpAuthorizer<A, C>where
A: UnsafeUnpin,
impl<A, C> UnwindSafe for HttpAuthorizer<A, C>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more