[][src]Trait heaparray::LabelledArrayRefMut

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

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

Required methods

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

Get mutable reference to the label.

Loading content...

Implementors

impl<A, R, E, L> LabelledArrayRefMut<E, L> for RcArray<A, R, E, L> where
    A: LabelledArray<E, R> + BaseArrayRef + LabelledArrayMut<E, R>,
    R: RefCounter<L>, 
[src]

Loading content...