remove Inner noise from Error Debug format
This commit is contained in:
@@ -54,7 +54,6 @@ pub struct Error {
|
|||||||
inner: Box<Inner>,
|
inner: Box<Inner>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
struct Inner {
|
struct Inner {
|
||||||
kind: Kind,
|
kind: Kind,
|
||||||
url: Option<Url>,
|
url: Option<Url>,
|
||||||
@@ -213,7 +212,10 @@ impl Error {
|
|||||||
|
|
||||||
impl fmt::Debug for Error {
|
impl fmt::Debug for Error {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
fmt::Debug::fmt(&self.inner, f)
|
f.debug_struct("Error")
|
||||||
|
.field("kind", &self.inner.kind)
|
||||||
|
.field("url", &self.inner.url)
|
||||||
|
.finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user