devise::ext

Trait 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>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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,