add the ability to deserialize JSON from a response body directly

This commit is contained in:
Garrett Squire
2016-11-17 18:22:34 -08:00
parent 6967f92cb9
commit 2d10ecc99e
2 changed files with 12 additions and 1 deletions

View File

@@ -68,5 +68,11 @@ impl From<::serde_urlencoded::ser::Error> for Error {
}
}
impl From<::serde_json::Error> for Error {
fn from(err: ::serde_json::Error) -> Error {
Error::Serialize(Box::new(err))
}
}
/// A `Result` alias where the `Err` case is `reqwest::Error`.
pub type Result<T> = ::std::result::Result<T, Error>;