pub trait Insert<Idx, V> { // Required method fn insert(&mut self, key: Idx, elem: V); }
Insert describes the basic behaviors of a structure insert a new element given an index or key