pub trait IterSingleButtons {
    type Iter: Iterator<Item = Button>;

    // Required method
    fn singles(self) -> Self::Iter;
}

Required Associated Types§

source

type Iter: Iterator<Item = Button>

Required Methods§

source

fn singles(self) -> Self::Iter

Map each PDButtons to many Buttons.

Implementors§