module std::collections::tuple(); struct Tuple { Type1 first; Type2 second; } module std::collections::triple(); struct Triple { Type1 first; Type2 second; Type3 third; }