Enum vkrs::auth::OAuthError [] [src]

pub enum OAuthError {
    Io(Error),
    Url(ParseError),
    Hyper(Error),
    Json(ParserError),
    Parse(ParseError),
    OAuth2(OAuth2Error),
}

Errors that can occur during authorization.

Variants

IO error.

URL error.

Hyper error.

JSON error.

Response parse error.

OAuth 2.0 error.

Trait Implementations

impl Display for ClientError
[src]

Formats the value using the given formatter.

impl Error for ClientError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for ClientError
[src]

Performs the conversion.

impl From<ParseError> for ClientError
[src]

Performs the conversion.

impl From<Error> for ClientError
[src]

Performs the conversion.

impl From<ParserError> for ClientError
[src]

Performs the conversion.

impl From<ParseError> for ClientError
[src]

Performs the conversion.

impl From<OAuth2Error> for ClientError
[src]

Performs the conversion.

impl Debug for ClientError
[src]

Formats the value using the given formatter.