Implement the (deprecated) description() function for old Rust versions

Fixes #10
This commit is contained in:
Frank Denis 2018-08-21 12:05:06 +00:00
parent 22b51a4c20
commit 61d1e7cb0e

View file

@ -67,7 +67,16 @@ impl std::fmt::Display for Error {
std::fmt::Debug::fmt(self, fmt)
}
}
impl std::error::Error for Error {}
impl std::error::Error for Error {
fn description(&self) -> &str {
match self {
Error::Timeout => "Timeout",
Error::Incomplete => "Incomplete",
Error::TooLarge => "TooLarge",
Error::Hyper(_) => self.description(),
}
}
}
impl Service for DoH {
type ReqBody = Body;