pub trait BinaryBloomSet: BloomSet {
// Required methods
fn union(&mut self, other: &Self);
fn intersect(&mut self, other: &Self);
}
Expand description
A trait for types which can serve as the underlying storage for a
BloomFilter
and perform unions and
intersections.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.