Trait data_structure_traits::Iterable [] [src]

pub trait Iterable<'a, T> {
    type Iter: Iterator<Item = T>;
    fn iter(&'a self) -> Self::Iter;
}

Associated Types

Required Methods

Implementors