Enum mango_smoothie::errors::Error
[−]
[src]
pub enum Error {
Json(Error),
Http(HyperError),
Url(ParseError),
Io(Error),
Query {
error: String,
description: String,
},
}Variants
Json(Error)Http(HyperError)Url(ParseError)Io(Error)QueryFields of Query
error: String | |
description: String |
Methods
impl Error[src]
fn from_couch(msg: &str) -> Error
Trait Implementations
impl Debug for Error[src]
impl Display for Error[src]
impl StdError for Error[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&StdError>
The lower-level cause of this error, if any. Read more
impl From<HyperError> for Error[src]
fn from(err: HyperError) -> Error
Performs the conversion.