We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Debug
Display
1 parent 8f8f92f commit c0e2b52Copy full SHA for c0e2b52
src/backtrace/mod.rs
@@ -129,15 +129,15 @@ with_backtrace! {
129
impl Debug for Backtrace {
130
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
131
if let Some(bt) = self.internal.as_backtrace() {
132
- bt.fmt(f)
+ Debug::fmt(bt, f)
133
} else { Ok(()) }
134
}
135
136
137
impl Display for Backtrace {
138
139
140
+ Display::fmt(bt, f)
141
142
143
0 commit comments