pub trait IntoUnionZip<'a, K, M> {
    // Required method
    fn into_union_zip(self, other: &'a M) -> UnionZipped<'a, K, M>;
}

Required Methods§

source

fn into_union_zip(self, other: &'a M) -> UnionZipped<'a, K, M>

Implementors§

source§

impl<'a, K, V> IntoUnionZip<'a, K, HashMap<K, V>> for UnionZipped<'a, K, HashMap<K, V>>
where K: Hash + Eq + Clone + Ord,