CombineWith

Trait CombineWith 

Source
pub trait CombineWith {
    // Required method
    fn combine_with(&self, others: Vec<Self>) -> Self
       where Self: Sized;
}

Required Methods§

Source

fn combine_with(&self, others: Vec<Self>) -> Self
where Self: Sized,

Implementors§

Source§

impl<'a, K: PartialEq + Eq + Hash + Clone, V: PartialEq + Eq> CombineWith for DataCloud<'a, K, V>