[][src]Struct typed_headers::AuthScheme

pub struct AuthScheme(_);

An authorization scheme.

Methods

impl AuthScheme[src]

pub const BASIC: AuthScheme[src]

Basic authentication, as defined in RFC7617.

pub const BEARER: AuthScheme[src]

Bearer authentication, as defined in RFC6750.

pub fn new(s: &str) -> Result<AuthScheme, Error>[src]

Constructs a new instance of this value from a string.

An error is returned if the string is not a valid token.

pub fn as_str(&self) -> &str[src]

Returns the string representation of this token.

Trait Implementations

impl Clone for AuthScheme[src]

impl Eq for AuthScheme[src]

impl PartialEq<AuthScheme> for AuthScheme[src]

impl Debug for AuthScheme[src]

impl Display for AuthScheme[src]

impl FromStr for AuthScheme[src]

type Err = Error

The associated error which can be returned from parsing.

impl StructuralPartialEq for AuthScheme[src]

impl StructuralEq for AuthScheme[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]