pub trait MergeableContent {
    // Required methods
    fn is_mergable_content(&self, other: &dyn InsertContentTrait) -> bool;
    fn merge_content(&mut self, other: &dyn InsertContentTrait);
}
Expand description

@deprecated

Required Methods§

source

fn is_mergable_content(&self, other: &dyn InsertContentTrait) -> bool

source

fn merge_content(&mut self, other: &dyn InsertContentTrait)

Implementors§