diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-12-04 17:17:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-04 17:17:12 +0100 |
| commit | 16711fe0768d9df5daf73a2025913984ea17f8eb (patch) | |
| tree | 921ce0b89e04e269267135fee64d9afc5ddbb7c2 /library/core/src/array | |
| parent | ac083c6b45bd3fbe0dc24ab57e2dd9d55f14d472 (diff) | |
| download | rust-16711fe0768d9df5daf73a2025913984ea17f8eb.tar.gz rust-16711fe0768d9df5daf73a2025913984ea17f8eb.zip | |
Update stabilization version of try_from_mut_slice_to_array
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 181f8b408e6..33f0f46a0a1 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -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, |
