pub trait TupleIntoIter { type Iter: Iterator; // Required method fn into_iter(self) -> Self::Iter; }