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.
RefUnwindSafe
Rc<T>
1 parent 18bc4be commit bd194daCopy full SHA for bd194da
library/alloc/src/rc.rs
@@ -318,6 +318,8 @@ impl<T: ?Sized> !marker::Sync for Rc<T> {}
318
319
#[stable(feature = "catch_unwind", since = "1.9.0")]
320
impl<T: RefUnwindSafe + ?Sized> UnwindSafe for Rc<T> {}
321
+#[stable(feature = "rc_ref_unwind_safe", since = "1.58.0")]
322
+impl<T: RefUnwindSafe + ?Sized> RefUnwindSafe for Rc<T> {}
323
324
#[unstable(feature = "coerce_unsized", issue = "27732")]
325
impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Rc<U>> for Rc<T> {}
0 commit comments