Trait devise::ext::Split3

source ·
pub trait Split3<A, B, C>: Sized + Iterator {
    // Required method
    fn split3(self) -> (Vec<A, Global>, Vec<B, Global>, Vec<C, Global>);
}

Required Methods§

source

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

Implementors§

source§

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