Struct poem::web::headers::Authorization
source · pub struct Authorization<C>(pub C)
where
C: Credentials;
Expand description
Authorization
header, defined in RFC7235
The Authorization
header field allows a user agent to authenticate
itself with an origin server – usually, but not necessarily, after
receiving a 401 (Unauthorized) response. Its value consists of
credentials containing the authentication information of the user
agent for the realm of the resource being requested.
ABNF
Authorization = credentials
Example values
Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Bearer fpKL54jvWmEGVoRdCNjG
Examples
use headers::Authorization;
let basic = Authorization::basic("Aladdin", "open sesame");
let bearer = Authorization::bearer("some-opaque-token").unwrap();
Tuple Fields§
§0: C
Implementations§
source§impl Authorization<Basic>
impl Authorization<Basic>
Trait Implementations§
source§impl<C> Clone for Authorization<C>where
C: Clone + Credentials,
impl<C> Clone for Authorization<C>where C: Clone + Credentials,
source§fn clone(&self) -> Authorization<C>
fn clone(&self) -> Authorization<C>
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<C> Debug for Authorization<C>where
C: Debug + Credentials,
impl<C> Debug for Authorization<C>where C: Debug + Credentials,
source§impl<C> Header for Authorization<C>where
C: Credentials,
impl<C> Header for Authorization<C>where C: Credentials,
source§fn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
source§fn decode<'i, I>(values: &mut I) -> Result<Authorization<C>, Error>where
I: Iterator<Item = &'i HeaderValue>,
fn decode<'i, I>(values: &mut I) -> Result<Authorization<C>, Error>where I: Iterator<Item = &'i HeaderValue>,
Decode this type from an iterator of
HeaderValue
s.source§impl<C> PartialEq for Authorization<C>where
C: PartialEq + Credentials,
impl<C> PartialEq for Authorization<C>where C: PartialEq + Credentials,
source§fn eq(&self, other: &Authorization<C>) -> bool
fn eq(&self, other: &Authorization<C>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<C> StructuralPartialEq for Authorization<C>where C: Credentials,
Auto Trait Implementations§
impl<C> RefUnwindSafe for Authorization<C>where C: RefUnwindSafe,
impl<C> Send for Authorization<C>where C: Send,
impl<C> Sync for Authorization<C>where C: Sync,
impl<C> Unpin for Authorization<C>where C: Unpin,
impl<C> UnwindSafe for Authorization<C>where C: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§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
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> TowerCompatExt for T
impl<T> TowerCompatExt for T
source§fn compat<ResBody, Err, Fut>(self) -> TowerCompatEndpoint<Self>where
ResBody: HttpBody + Send + 'static,
ResBody::Data: Into<Bytes> + Send + 'static,
ResBody::Error: StdError + Send + Sync + 'static,
Err: Into<Error>,
Self: Service<Request<Body>, Response = Response<ResBody>, Error = Err, Future = Fut> + Clone + Send + Sync + Sized + 'static,
Fut: Future<Output = Result<Response<ResBody>, Err>> + Send + 'static,
fn compat<ResBody, Err, Fut>(self) -> TowerCompatEndpoint<Self>where ResBody: HttpBody + Send + 'static, ResBody::Data: Into<Bytes> + Send + 'static, ResBody::Error: StdError + Send + Sync + 'static, Err: Into<Error>, Self: Service<Request<Body>, Response = Response<ResBody>, Error = Err, Future = Fut> + Clone + Send + Sync + Sized + 'static, Fut: Future<Output = Result<Response<ResBody>, Err>> + Send + 'static,
Available on crate feature
tower-compat
only.Converts a tower service to a poem endpoint.