Enum roadrunner::Error [] [src]

pub enum Error {
    UrlParse(ParseError),
    UriParse(UriError),
    Hyper(Error),
    CharsetDecode,
    Io(Error),
    JsonError(Error),
    NativeTlsError(Error),
}

The error that can happen during a request.

Variants

Indicate an url parsing error.

Also indicate an url parsing error.

Error reported by hyper.

Response content cannot be decoded successfully.

IO error.

Error reported by serde_json.

native_tls error

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

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

impl From<ParseError> for Error
[src]

Performs the conversion.

impl From<UriError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.