std: Correct stability attributes for some implementations
These are displayed by rustdoc so should be correct.
This commit is contained in:
parent
5045d4e396
commit
06a7dcd355
21 changed files with 88 additions and 47 deletions
|
@ -196,9 +196,9 @@ impl<'a, T: RefUnwindSafe + ?Sized> UnwindSafe for &'a T {}
|
|||
impl<T: RefUnwindSafe + ?Sized> UnwindSafe for *const T {}
|
||||
#[stable(feature = "catch_unwind", since = "1.9.0")]
|
||||
impl<T: RefUnwindSafe + ?Sized> UnwindSafe for *mut T {}
|
||||
#[stable(feature = "catch_unwind", since = "1.9.0")]
|
||||
#[unstable(feature = "unique", issue = "27730")]
|
||||
impl<T: UnwindSafe> UnwindSafe for Unique<T> {}
|
||||
#[stable(feature = "catch_unwind", since = "1.9.0")]
|
||||
#[unstable(feature = "shared", issue = "27730")]
|
||||
impl<T: RefUnwindSafe + ?Sized> UnwindSafe for Shared<T> {}
|
||||
#[stable(feature = "catch_unwind", since = "1.9.0")]
|
||||
impl<T: ?Sized> UnwindSafe for Mutex<T> {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue