Struct actix_web_httpauth::headers::authorization::Bearer [−][src]
Credentials for Bearer
authentication scheme, defined in RFC6750
Should be used in combination with
Authorization
header.
Implementations
impl Bearer
[src]
pub fn new<T>(token: T) -> Bearer where
T: Into<Cow<'static, str>>,
[src]
T: Into<Cow<'static, str>>,
Creates new Bearer
credentials with the token provided.
Example
let credentials = Bearer::new("mF_9.B5f-4.1JqM");
pub fn token(&self) -> &Cow<'static, str>
[src]
Gets reference to the credentials token.
Trait Implementations
impl Clone for Bearer
[src]
impl Debug for Bearer
[src]
impl Display for Bearer
[src]
impl Eq for Bearer
[src]
impl IntoHeaderValue for Bearer
[src]
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
fn try_into_value(self) -> Result<HeaderValue, Self::Error>
[src]
impl Ord for Bearer
[src]
fn cmp(&self, other: &Bearer) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<Bearer> for Bearer
[src]
impl PartialOrd<Bearer> for Bearer
[src]
fn partial_cmp(&self, other: &Bearer) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Scheme for Bearer
[src]
fn parse(header: &HeaderValue) -> Result<Self, ParseError>
[src]
impl StructuralEq for Bearer
[src]
impl StructuralPartialEq for Bearer
[src]
Auto Trait Implementations
impl RefUnwindSafe for Bearer
impl Send for Bearer
impl Sync for Bearer
impl Unpin for Bearer
impl UnwindSafe for Bearer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,