pub trait IsRandomInsertible<T>: IsRandomAccessible<T> {
// Required method
fn insert(&mut self, index: usize, x: T) -> Result<()>;
}
Expand description
IsRandomInsertible is a trait used for collections of elements which are random insertible