From 76c28cf48e09a1187468e59cf0ab12edb4df4410 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 8 Jan 2020 22:19:28 -0700 Subject: [PATCH] Implement the Display trait for DoHError --- src/libdoh/src/errors.rs | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/src/libdoh/src/errors.rs b/src/libdoh/src/errors.rs index e4e1e59..707b6bb 100644 --- a/src/libdoh/src/errors.rs +++ b/src/libdoh/src/errors.rs @@ -13,22 +13,18 @@ pub enum DoHError { Io(io::Error), } +impl std::error::Error for DoHError {} + impl std::fmt::Display for DoHError { fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { - std::fmt::Debug::fmt(self, fmt) - } -} - -impl std::error::Error for DoHError { - fn description(&self) -> &str { - match *self { - DoHError::Incomplete => "Incomplete", - DoHError::InvalidData => "Invalid data", - DoHError::TooLarge => "Too large", - DoHError::UpstreamIssue => "Upstream error", - DoHError::UpstreamTimeout => "Upstream timeout", - DoHError::Hyper(_) => self.description(), - DoHError::Io(_) => self.description(), + match self { + DoHError::Incomplete => write!(fmt, "Incomplete"), + DoHError::InvalidData => write!(fmt, "Invalid data"), + DoHError::TooLarge => write!(fmt, "Too large"), + DoHError::UpstreamIssue => write!(fmt, "Upstream error"), + DoHError::UpstreamTimeout => write!(fmt, "Upstream timeout"), + DoHError::Hyper(e) => write!(fmt, "HTTP error: {}", e), + DoHError::Io(e) => write!(fmt, "IO error: {}", e), } } }