Execute the following command to run ./solutions/examples/generic_trait.rs
cargo run --example generic_traitExercises are in ./exercises/src/lib.rs
impl<T> Iterator<T> for TupleIter<T> {
fn next(&mut self) -> Option<&T> {
todo!();
}
}Implement the Iterator trait for TupleIter<T>.
Return the next element in the tuple until all elements are iterated.
Implement the Iterator trait for VecIter<T>.
Return the next element in the vector until all elements are iterated.
cargo test