Enum ddg::query::Error [] [src]

pub enum Error {
    Http(HttpError),
    SerdeJson(Error),
}

Error from parsing or convertingi into a URL.

Variants

An error in making the HTTP request, or parsing the query string into a url.

An error in parsing the JSON.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<HttpError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.