Enum wikipedia::Error[][src]

pub enum Error {
    HTTPError,
    IOError(Error),
    JSONError(Error),
    JSONPathError,
    InvalidParameter(String),
}

Wikipedia failed to fetch some information

Variants

Some error communicating with the server

Error reading response

Failed to parse JSON response

Missing required keys in the JSON response

One of the parameters provided (identified by String) is invalid

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error