pub trait Combine {
// Required method
fn combine(&mut self, template: &Self);
}
Expand description
Combine two containers by combining all of their elements. This does not deduplicate anything for types which support multiple values of the same key.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.