pub trait Split4<A, B, C, D>: Sized + Iterator { // Required method fn split4( self ) -> (Vec<A, Global>, Vec<B, Global>, Vec<C, Global>, Vec<D, Global>); }