pub trait PDButtonsIntoIter { type Item; type IntoIter: Iterator<Item = Self::Item>; // Required method fn into_iter(self) -> Self::IntoIter; }