Trait cloudr::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>) -> Selfwhere Self: Sized,

Implementors§

source§

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