vector_config::schema::visitors::merge

Trait Mergeable

Source
pub trait Mergeable {
    // Required method
    fn merge(&mut self, other: &Self);
}
Expand description

A type that can be merged with itself.

Required Methods§

Source

fn merge(&mut self, other: &Self)

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.

Implementations on Foreign Types§

Source§

impl Mergeable for Value

Source§

fn merge(&mut self, other: &Self)

Source§

impl Mergeable for Map<String, Value>

Source§

fn merge(&mut self, other: &Self)

Implementors§

Source§

impl Mergeable for Schema

Source§

impl Mergeable for SchemaObject

Source§

impl<K, V> Mergeable for vector_config::schema::Map<K, V>
where K: Clone + Eq + Ord, V: Clone + Mergeable,