pub trait RawMergable: Clone + Any {
    // Required method
    fn raw_merge_ok(&self, other: &Self) -> bool;
}

Required Methods§

source

fn raw_merge_ok(&self, other: &Self) -> bool

Implementors§