PDButtonsIter

Trait PDButtonsIter 

Source
pub trait PDButtonsIter<'t> {
    type Item;
    type Iter: Iterator<Item = Self::Item>;

    // Required method
    fn iter(&'t self) -> Self::Iter;
}

Required Associated Types§

Source

type Item

Source

type Iter: Iterator<Item = Self::Item>

Required Methods§

Source

fn iter(&'t self) -> Self::Iter

Implementations on Foreign Types§

Source§

impl<'t> PDButtonsIter<'t> for PDButtons

Source§

type Item = &'static PDButtons

Source§

type Iter = impl Iterator<Item = <PDButtons as PDButtonsIter<'t>>::Item> + 't

Source§

fn iter(&'t self) -> Self::Iter

Implementors§