[][src]Struct yup_oauth2::Scheme

pub struct Scheme {
    pub token_type: TokenType,
    pub access_token: String,
}

A scheme for use in hyper::header::Authorization

Fields

token_type: TokenType

The type of our access token

access_token: String

The token returned by one of the Authorization Flows

Trait Implementations

impl Into<HeaderValue> for Scheme[src]

impl Clone for Scheme[src]

impl PartialEq<Scheme> for Scheme[src]

impl Debug for Scheme[src]

impl FromStr for Scheme[src]

type Err = &'static str

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for Scheme

impl Unpin for Scheme

impl Sync for Scheme

impl UnwindSafe for Scheme

impl RefUnwindSafe for Scheme

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

type Error = Infallible

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T