Enum wolfram_alpha::HttpRequestError [] [src]

pub enum HttpRequestError {
    Io(Error),
    Other(Box<StdError>),
}

Represents errors which occur when sending an HTTP request to Wolfram|Alpha.

Variants

An error occuring during network IO operations.

Any other error occuring during an HTTP request.

Trait Implementations

impl Debug for HttpRequestError
[src]

Formats the value using the given formatter.

impl Display for HttpRequestError
[src]

Formats the value using the given formatter.

impl StdError for HttpRequestError
[src]

A short description of the error. Read more

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

impl From<Error> for HttpRequestError
[src]

Performs the conversion.

impl From<Error> for HttpRequestError
[src]

Performs the conversion.