File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -715,9 +715,9 @@ pub struct Weak<T: ?Sized> {
715
715
_ptr : Shared < RcBox < T > > ,
716
716
}
717
717
718
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
718
+ #[ stable( feature = "rc_weak " , since = "1.4 .0" ) ]
719
719
impl < T : ?Sized > !marker:: Send for Weak < T > { }
720
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
720
+ #[ stable( feature = "rc_weak " , since = "1.4 .0" ) ]
721
721
impl < T : ?Sized > !marker:: Sync for Weak < T > { }
722
722
723
723
#[ unstable( feature = "coerce_unsized" , issue = "27732" ) ]
@@ -753,7 +753,7 @@ impl<T: ?Sized> Weak<T> {
753
753
}
754
754
}
755
755
756
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
756
+ #[ stable( feature = "rc_weak " , since = "1.4 .0" ) ]
757
757
impl < T : ?Sized > Drop for Weak < T > {
758
758
/// Drops the `Weak<T>`.
759
759
///
@@ -819,7 +819,7 @@ impl<T: ?Sized> Clone for Weak<T> {
819
819
}
820
820
}
821
821
822
- #[ stable( feature = "rust1 " , since = "1.0 .0" ) ]
822
+ #[ stable( feature = "rc_weak " , since = "1.4 .0" ) ]
823
823
impl < T : ?Sized + fmt:: Debug > fmt:: Debug for Weak < T > {
824
824
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
825
825
write ! ( f, "(Weak)" )
You can’t perform that action at this time.
0 commit comments