mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-05 14:07:37 +03:00
Implement the (deprecated) description() function for old Rust versions
Fixes #10
This commit is contained in:
parent
22b51a4c20
commit
61d1e7cb0e
1 changed files with 10 additions and 1 deletions
11
src/main.rs
11
src/main.rs
|
@ -67,7 +67,16 @@ impl std::fmt::Display for Error {
|
||||||
std::fmt::Debug::fmt(self, fmt)
|
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 {
|
impl Service for DoH {
|
||||||
type ReqBody = Body;
|
type ReqBody = Body;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue