pub trait MergeCombine {
    fn merge_combine(&mut self, template: &Self);
}
Expand description

Combine two map-like containers by recursively calling Merge on elements that have the same key, and adding any missing key values from the template.

Required Methods§

Implementations on Foreign Types§

Implementors§