pub trait SliceIdMut: SliceId {
    fn as_mut_slice_mut(&mut self) -> &mut [&mut Self::Item];
}
Expand description

Helper trait for functionality on slices containing owned Ids.

Required Methods

Convert a mutable slice of mutable Ids into a mutable slice of mutable references.

Implementations on Foreign Types

Implementors