File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ use crate::mem::transmute;
30
30
use crate :: num;
31
31
use crate :: str;
32
32
use crate :: string;
33
+ use crate :: sync:: Arc ;
33
34
34
35
/// `Error` is a trait representing the basic expectations for error values,
35
36
/// i.e., values of type `E` in [`Result<T, E>`]. Errors must describe
@@ -507,6 +508,27 @@ impl<'a, T: Error + ?Sized> Error for &'a T {
507
508
}
508
509
}
509
510
511
+ #[ stable( feature = "arc_error" , since = "1.52.0" ) ]
512
+ impl < T : Error + ?Sized > Error for Arc < T > {
513
+ #[ allow( deprecated, deprecated_in_future) ]
514
+ fn description ( & self ) -> & str {
515
+ Error :: description ( & * * self )
516
+ }
517
+
518
+ #[ allow( deprecated) ]
519
+ fn cause ( & self ) -> Option < & dyn Error > {
520
+ Error :: cause ( & * * self )
521
+ }
522
+
523
+ fn source ( & self ) -> Option < & ( dyn Error + ' static ) > {
524
+ Error :: source ( & * * self )
525
+ }
526
+
527
+ fn backtrace ( & self ) -> Option < & Backtrace > {
528
+ Error :: backtrace ( & * * self )
529
+ }
530
+ }
531
+
510
532
#[ stable( feature = "fmt_error" , since = "1.11.0" ) ]
511
533
impl Error for fmt:: Error {
512
534
#[ allow( deprecated) ]
You can’t perform that action at this time.
0 commit comments