[][src]Trait heaparray::LabelledArrayMut

pub trait LabelledArrayMut<E, L>: LabelledArray<E, L> {
    fn get_label_mut(&mut self) -> &mut L;
}

Array with optional label struct stored next to the data that can be mutated

Required methods

fn get_label_mut(&mut self) -> &mut L

Get mutable reference to the label.

Loading content...

Implementors

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

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

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

Loading content...