@@ -710,7 +710,7 @@ impl<T> Vec<T> {
710710/// }
711711/// ```
712712#[ inline]
713- #[ unstable( feature = "box_vec_non_null" , reason = "new API" , issue = "none " ) ]
713+ #[ unstable( feature = "box_vec_non_null" , reason = "new API" , issue = "130364 " ) ]
714714pub unsafe fn from_parts ( ptr : NonNull < T > , length : usize , capacity : usize ) -> Self {
715715unsafe { Self :: from_parts_in ( ptr, length, capacity, Global ) }
716716}
@@ -1042,7 +1042,7 @@ impl<T, A: Allocator> Vec<T, A> {
10421042/// ```
10431043#[ inline]
10441044#[ unstable( feature = "allocator_api" , reason = "new API" , issue = "32838" ) ]
1045- // #[unstable(feature = "box_vec_non_null", issue = "none ")]
1045+ // #[unstable(feature = "box_vec_non_null", issue = "130364 ")]
10461046pub unsafe fn from_parts_in ( ptr : NonNull < T > , length : usize , capacity : usize , alloc : A ) -> Self {
10471047unsafe { Vec { buf : RawVec :: from_nonnull_in ( ptr, capacity, alloc) , len : length } }
10481048}
@@ -1121,7 +1121,7 @@ impl<T, A: Allocator> Vec<T, A> {
11211121/// assert_eq!(rebuilt, [4294967295, 0, 1]);
11221122/// ```
11231123#[ must_use = "losing the pointer will leak memory" ]
1124- #[ unstable( feature = "box_vec_non_null" , reason = "new API" , issue = "none " ) ]
1124+ #[ unstable( feature = "box_vec_non_null" , reason = "new API" , issue = "130364 " ) ]
11251125// #[unstable(feature = "vec_into_raw_parts", reason = "new API", issue = "65816")]
11261126pub fn into_parts ( self ) -> ( NonNull < T > , usize , usize ) {
11271127let ( ptr, len, capacity) = self . into_raw_parts ( ) ;
@@ -1218,7 +1218,7 @@ impl<T, A: Allocator> Vec<T, A> {
12181218/// ```
12191219#[ must_use = "losing the pointer will leak memory" ]
12201220#[ unstable( feature = "allocator_api" , issue = "32838" ) ]
1221- // #[unstable(feature = "box_vec_non_null", reason = "new API", issue = "none ")]
1221+ // #[unstable(feature = "box_vec_non_null", reason = "new API", issue = "130364 ")]
12221222// #[unstable(feature = "vec_into_raw_parts", reason = "new API", issue = "65816")]
12231223pub fn into_parts_with_alloc ( self ) -> ( NonNull < T > , usize , usize , A ) {
12241224let ( ptr, len, capacity, alloc) = self . into_raw_parts_with_alloc ( ) ;
0 commit comments