Trait flat_zip::FlatZipExt

source ·
pub trait FlatZipExt: Iterator<Item = (Self::Key, Self::Group)> + Sized {
    type Key: Clone;
    type Group: IntoIterator;

    // Required method
    fn flat_zip(self) -> FlatZip<Self, Self::Key, Self::Group> ;
}

Required Associated Types§

Required Methods§

source

fn flat_zip(self) -> FlatZip<Self, Self::Key, Self::Group>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I, K, G> FlatZipExt for Iwhere I: Iterator<Item = (K, G)>, K: Clone, G: IntoIterator,

§

type Key = K

§

type Group = G