devise::ext

Trait Split4

Source
pub trait Split4<A, B, C, D>: Sized + Iterator {
    // Required method
    fn split4(self) -> (Vec<A>, Vec<B>, Vec<C>, Vec<D>);
}

Required Methods§

Source

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

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, D, I> Split4<A, B, C, D> for I
where I: IntoIterator<Item = (A, B, C, D)> + Iterator,