pub trait SliceArrayMut<E> {
// Required method
fn as_slice_mut(&mut self) -> &mut [E];
}
Expand description
Array that returns a mutable slice into its contents
Required Methods§
Sourcefn as_slice_mut(&mut self) -> &mut [E]
fn as_slice_mut(&mut self) -> &mut [E]
Returns a mutable reference to a slice into the elements of this array.