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.
1 parent 650991d commit c872cccCopy full SHA for c872ccc
library/alloc/src/boxed.rs
@@ -2444,4 +2444,8 @@ impl<T: core::error::Error> core::error::Error for Box<T> {
2444
fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
2445
core::error::Error::source(&**self)
2446
}
2447
+
2448
+ fn provide<'b>(&'b self, request: &mut core::error::Request<'b>) {
2449
+ core::error::Error::provide(&**self, request);
2450
+ }
2451
0 commit comments