Trait devise::ext::Split4

source ·
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>);
}

Required Methods§

source

fn split4( self ) -> (Vec<A, Global>, Vec<B, Global>, Vec<C, Global>, Vec<D, Global>)

Implementors§

source§

impl<A, B, C, D, I> Split4<A, B, C, D> for Iwhere I: IntoIterator<Item = (A, B, C, D)> + Iterator,