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