IterSingleButtons

Trait IterSingleButtons 

Source
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§

Source§

impl<T: Iterator<Item = <PDButtons as PDButtonsIntoIter>::Item>> IterSingleButtons for T

Source§

type Iter = impl Iterator<Item = Button>