Enum goauth::error::GOErr [] [src]

pub enum GOErr {
    Json(json_error),
    Io(io_error),
    Curl(curl_error),
    JWT(jwt_error),
    TokenErr(token_error),
    Unknown,
}

Variants

Trait Implementations

impl Debug for GOErr
[src]

Formats the value using the given formatter.

impl From<json_error> for GOErr
[src]

Performs the conversion.

impl From<io_error> for GOErr
[src]

Performs the conversion.

impl From<curl_error> for GOErr
[src]

Performs the conversion.

impl From<jwt_error> for GOErr
[src]

Performs the conversion.

impl From<token_error> for GOErr
[src]

Performs the conversion.

impl Display for GOErr
[src]

Formats the value using the given formatter. Read more

impl Error for GOErr
[src]

A short description of the error. Read more

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