pub trait Addable<V: Key> { // Required method fn add(&mut self, new_value: V); }
Convenience trait to assure consistency between map key and name attribute of stored element.
Takes a value that provides a key and stores it under the given key.