Enum simplist::HttpError [] [src]

pub enum HttpError {
    Uri(UriError),
    Hyper(HyperError),
    Utf8(Utf8Error),
    Status(StatusCode),
}

the error type for all errors in crate simplist.

Variants

Trait Implementations

impl Debug for HttpError
[src]

[src]

Formats the value using the given formatter.

impl Display for HttpError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for HttpError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<UriError> for HttpError
[src]

[src]

Performs the conversion.

impl From<HyperError> for HttpError
[src]

[src]

Performs the conversion.

impl From<FromUtf8Error> for HttpError
[src]

[src]

Performs the conversion.