pub trait Insert<Value> {
    fn insert(&mut self, value: Value) -> Option<Arc<Value>>;
}
Expand description

Insert some value to a container.

Required Methods

Inserts value into itself, returning the previous value, if exists.

Implementors