pub const fn array_from_mut<T>(s: &mut T) -> &mut [T; 1]
Expand description
core
Converts a mutable reference to T
into &mut [T; 1]
(without copying).
Re-exported from core
::array::
from_mut
→array_from_mut
.
Converts a mutable reference to T
into a mutable reference to an array of length 1 (without copying).