pub enum FilterPolicyEntry {
None,
Bloom(BloomConstructionPolicy),
}
Expand description
Filter policy entry
Each level can be configured with a different filter type and bits per key
Variants§
None
Skip filter construction
Bloom(BloomConstructionPolicy)
Standard bloom filter with K bits per key
Trait Implementations§
Source§impl Clone for FilterPolicyEntry
impl Clone for FilterPolicyEntry
Source§fn clone(&self) -> FilterPolicyEntry
fn clone(&self) -> FilterPolicyEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FilterPolicyEntry
impl Debug for FilterPolicyEntry
Source§impl PartialEq for FilterPolicyEntry
impl PartialEq for FilterPolicyEntry
impl Copy for FilterPolicyEntry
impl StructuralPartialEq for FilterPolicyEntry
Auto Trait Implementations§
impl Freeze for FilterPolicyEntry
impl RefUnwindSafe for FilterPolicyEntry
impl Send for FilterPolicyEntry
impl Sync for FilterPolicyEntry
impl Unpin for FilterPolicyEntry
impl UnwindSafe for FilterPolicyEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more