Skip to content

Commit d6a402d

Browse files
Add custom debug impl
1 parent 5b91130 commit d6a402d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/lib.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ pub enum Error {
134134
mod test {
135135
use crate::Error;
136136

137-
#[derive(Debug)]
138137
#[allow(dead_code)]
139138
pub struct LocatedError<E: std::error::Error + 'static> {
140139
inner: E,
@@ -151,6 +150,12 @@ mod test {
151150
}
152151
}
153152

153+
impl<T: std::error::Error + 'static> std::fmt::Debug for LocatedError<T> {
154+
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
155+
write!(f, "{}:{}:{}\n{:?}", self.location.file(), self.location.line(), self.location.column(), self.inner)
156+
}
157+
}
158+
154159
pub type DebugResult<T, E = LocatedError<Error>> = Result<T, E>;
155160
}
156161

0 commit comments

Comments
 (0)