[][src]Trait bloom2::Bitmap

pub trait Bitmap {
    pub fn set(&mut self, key: usize, value: bool);
pub fn get(&self, key: usize) -> bool; }

A trait to abstract bit storage for use in a Bloom2 filter.

Required methods

pub fn set(&mut self, key: usize, value: bool)[src]

pub fn get(&self, key: usize) -> bool[src]

Loading content...

Implementors

impl Bitmap for CompressedBitmap[src]

Loading content...