Trait Merge

pub trait Merge {
    // Required method
    fn merge(&mut self, rhs: Self);
}
Available on crate features __ecma and __utils only.

Required Methods§

fn merge(&mut self, rhs: 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§

§

impl Merge for Option<Value<Type>>

§

fn merge(&mut self, rhs: Option<Value<Type>>)

Implementors§