Trait vector_config::schema::visitors::merge::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)

Object Safety§

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,