Enum wolfram_alpha::Error
[−]
[src]
pub enum Error { HttpRequest(HttpRequestError), Io(Error), Xml(Error), }
Represents errors which occur while using the Wolfram|Alpha API.
Variants
HttpRequest(HttpRequestError)
Error sending a HTTP request to Wolfram|Alpha.
Io(Error)
An IO error was encountered.
Xml(Error)
Error while serializing or deserializing XML.
Trait Implementations
impl Debug for Error
[src]
impl Display for Error
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl StdError for Error
[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&StdError>
[src]
The lower-level cause of this error, if any. Read more
impl From<HttpRequestError> for Error
[src]
fn from(error: HttpRequestError) -> Error
[src]
Performs the conversion.