[][src]Enum oauth2::RequestTokenError

pub enum RequestTokenError<RE, T> where
    RE: Fail,
    T: ErrorResponse + 'static, 
{ ServerResponse(T), Request(RE), Parse(ErrorVec<u8>), Other(String), }

Error encountered while requesting access token.

Variants

ServerResponse(T)

Error response returned by authorization server. Contains the parsed ErrorResponse returned by the server.

Request(RE)

An error occurred while sending the request or receiving the response (e.g., network connectivity failed).

Parse(ErrorVec<u8>)

Failed to parse server response. Parse errors may occur while parsing either successful or error responses.

Other(String)

Some other type of error occurred (e.g., an unexpected server response).

Trait Implementations

impl<RE: Debug, T: Debug> Debug for RequestTokenError<RE, T> where
    RE: Fail,
    T: ErrorResponse + 'static, 
[src]

impl<RE, T> Display for RequestTokenError<RE, T> where
    RE: Fail,
    T: ErrorResponse + 'static, 
[src]

impl<RE, T> Fail for RequestTokenError<RE, T> where
    RE: Fail,
    T: ErrorResponse + 'static, 
[src]

Auto Trait Implementations

impl<RE, T> !RefUnwindSafe for RequestTokenError<RE, T>

impl<RE, T> Send for RequestTokenError<RE, T>

impl<RE, T> Sync for RequestTokenError<RE, T>

impl<RE, T> Unpin for RequestTokenError<RE, T> where
    RE: Unpin,
    T: Unpin

impl<RE, T> !UnwindSafe for RequestTokenError<RE, T>

Blanket Implementations

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

impl<T> AsFail for T where
    T: Fail
[src]

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

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

impl<E> Fail for E where
    E: 'static + Error + Send + Sync
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,