Trait data_structure_traits::SeqMut [] [src]

pub trait SeqMut<'a, V: 'a + ?Sized>: Seq<'a, V> + CollectionMut + GetMut<usize, Output = V> + Insert<usize, V, Output = ()> + Remove<usize, Output = V> where
    &'a Self: 'a + IntoIterator<Item = &'a V>,
    &'a mut Self: 'a + IntoIterator<Item = &'a mut V>,
    V: 'a, 
{ }

Implementors