pub trait BF<T: ?Sized> {
type Result;
type S;
type H: VaryHasher<Self::S>;
const SIZE: BloomSize;
// Required methods
fn bulk_insert<It: Iterator<Item = Self::S>>(&mut self, it: It);
fn check_raw(&self, item: Self::S) -> Self::Result;
}