pub trait RemovableBloomFilter {
    fn remove<T: Hash>(&mut self, item: &T);
}

Required Methods§

Implementors§