1
2
3
4
/// Describes a colletion containing a type.
pub trait Collection {
    type Item;
}