Trait Include

Source
pub trait Include<T> {
    // Required method
    fn include(&mut self, elem: T);
}
Expand description

Include describes the basic behaviors of a structure which can include a new element Include is designed to be an alternative to ArrayLike::push for structures which may or may not have a natural ordering

Required Methods§

Source

fn include(&mut self, elem: T)

Implementors§