Trait AsArrayMut
pub trait AsArrayMut<T>: AsArrayRef<T>
Obtain a &mut Array reference for a given type.
Companion trait to AsArrayRef for mutable references, equivalent to AsMut or
BorrowMut.
Required Methods
fn as_array_mut(&mut self) -> &mut Array<T, Self::Size>Converts this type into a mutable
Arrayreference.
Implementors
impl<T, U> AsArrayMut<T> for Array<T, U> where U: ArraySize,impl<T, U, const N: usize> AsArrayMut<T> for [T; N] where Self: AssocArraySize<Size = U>, U: ArraySize<ArrayType<T> = Self>,