Trait devise::ext::Split6

source ·
pub trait Split6<A, B, C, D, E, F>: Sized + Iterator {
    // Required method
    fn split6(
        self
    ) -> (Vec<A, Global>, Vec<B, Global>, Vec<C, Global>, Vec<D, Global>, Vec<E, Global>, Vec<F, Global>);
}

Required Methods§

source

fn split6( self ) -> (Vec<A, Global>, Vec<B, Global>, Vec<C, Global>, Vec<D, Global>, Vec<E, Global>, Vec<F, Global>)

Implementors§

source§

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