Enum fractal_api::error::Error [] [src]

pub enum Error {
    HyperError(HyperError),
    IO(Error),
    FromDTOError(FromDTOError),
    JSONDecodeError(DecoderError),
    Unauthorized,
    ServerError,
    InvalidTokenType,
    InvalidScope,
    InvalidSecret,
    RegistrationError,
    TransactionError,
    ConfirmConnectionError,
}

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<HyperError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<DecoderError> for Error
[src]

Performs the conversion.

impl From<FromDTOError> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.

impl StdError for Error
[src]

A short description of the error. Read more

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