data_structure_traits 0.1.12

data structure collection traits
Documentation
pub trait Create<T>
where
    T: ?Sized,
{
    fn create() -> Self;
    fn create_with_capacity(usize) -> Self;
    fn add_element(self, T) -> Self;
}