Mergeable

Trait Mergeable 

Source
pub trait Mergeable {
    // Required method
    fn can_merge(&self, other: &Self) -> bool;
}

Required Methods§

Source

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

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 Range<u64>

Source§

fn can_merge(&self, b: &Range<u64>) -> bool

Implementors§