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

§

type Item = &'static PDButtons

§

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

source§

fn into_iter(self) -> Self::IntoIter

Implementors§