[][src]Trait heaparray::base::SliceArray

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

Array that returns slices into its contents

Required methods

fn as_slice(&self) -> &[E]

Returns a reference to a slice into this array.

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

Returns a mutable reference to a slice into this array.

Loading content...

Implementors

impl<E, L> SliceArray<E> for AtomicPtrArray<E, L>[src]

impl<E, L> SliceArray<E> for ThinPtrArray<E, L>[src]

impl<E, L> SliceArray<E> for FatPtrArray<E, L>[src]

Loading content...