Trait rdb::filter::Filter [-] [+] [src]

pub trait Filter {
    fn matches_db(&self, _db: u32) -> bool { ... }
    fn matches_type(&self, _enc_type: u8) -> bool { ... }
    fn matches_key(&self, _key: &[u8]) -> bool { ... }
}

Provided Methods

fn matches_db(&self, _db: u32) -> bool

fn matches_type(&self, _enc_type: u8) -> bool

fn matches_key(&self, _key: &[u8]) -> bool

Implementors