[][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]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for AuthScheme[src]

impl PartialEq<AuthScheme> for AuthScheme[src]

impl Display for AuthScheme[src]

impl Debug for AuthScheme[src]

impl FromStr for AuthScheme[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for AuthScheme

impl Sync for AuthScheme

Blanket Implementations

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

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

type Owned = T

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]