Trait devise::ext::Split3

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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

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