pub trait Deal {
    type Index;
    type Iter: Iterator<Item = Self::Index>;

    fn deal(self) -> Self::Iter;
}

Required Associated Types

Required Methods

Implementors