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