PDButtonsIntoIter

Trait PDButtonsIntoIter 

Source
pub trait PDButtonsIntoIter {
    type Item;
    type IntoIter: Iterator<Item = Self::Item>;

    // Required method
    fn into_iter(self) -> Self::IntoIter;
}

Required Associated Types§

Source

type Item

Source

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

Required Methods§

Source

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

Source§

impl PDButtonsIntoIter for PDButtons

Source§

type Item = &'static PDButtons

Source§

type IntoIter = impl Iterator<Item = <PDButtons as PDButtonsIntoIter>::Item>

Source§

fn into_iter(self) -> Self::IntoIter

Implementors§