Trait SliceArrayMut

Source
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§

Source

fn as_slice_mut(&mut self) -> &mut [E]

Returns a mutable reference to a slice into the elements of this array.

Implementors§

Source§

impl<E, L, P> SliceArrayMut<E> for SafeArray<E, L, P>
where P: SafeArrayPtr<E, L>,