Inserter

Trait Inserter 

Source
pub trait Inserter<T> {
    // Required method
    fn insert(&self, index: usize, value: T);
}
Expand description

A trait for inserting data into a vector.

Required Methods§

Source

fn insert(&self, index: usize, value: T)

Insert a value into the vector.

Implementors§