Enum modio::error::ErrorKind[][src]

pub enum ErrorKind {
    Message(String),
    Fault {
        code: StatusCode,
        error: ClientError,
    },
    RateLimit {
        reset: Duration,
    },
    Download(DownloadError),
    Codec(SerdeError),
    Http(HttpError),
    Hyper(HyperError),
    Io(IoError),
    Uri(InvalidUri),
}

Variants

Fields of Fault

Fields of RateLimit

Trait Implementations

impl From<ErrorKind> for Error
[src]

Performs the conversion.

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind