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