Update stabilization version of try_from_mut_slice_to_array

This commit is contained in:
Mara Bos 2021-12-04 17:17:12 +01:00 committed by GitHub
parent ac083c6b45
commit 16711fe076
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,7 +176,7 @@ where
}
}
#[stable(feature = "try_from_mut_slice_to_array", since = "1.58.0")]
#[stable(feature = "try_from_mut_slice_to_array", since = "1.59.0")]
impl<T, const N: usize> TryFrom<&mut [T]> for [T; N]
where
T: Copy,