Trait OverlapInfo

Source
pub trait OverlapInfo: Debug {
    // Required methods
    fn check_overlap(&self, a: &SstableInfo) -> bool;
    fn check_multiple_overlap(&self, others: &[SstableInfo]) -> Range<usize>;
    fn check_multiple_include(&self, others: &[SstableInfo]) -> Range<usize>;
    fn update(&mut self, table: &SstableInfo);
}

Required Methods§

Source

fn check_overlap(&self, a: &SstableInfo) -> bool

Source

fn check_multiple_overlap(&self, others: &[SstableInfo]) -> Range<usize>

Source

fn check_multiple_include(&self, others: &[SstableInfo]) -> Range<usize>

Source

fn update(&mut self, table: &SstableInfo)

Implementors§