[][src]Trait heaparray::SliceArrayMut

pub trait SliceArrayMut<E> {
    fn as_slice_mut(&mut self) -> &mut [E];
}

Array that returns a mutable slice into its contents

Required methods

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

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

Loading content...

Implementors

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

Loading content...