Struct BitmaskMatcherStatistics
pub struct BitmaskMatcherStatistics {
pub total_patterns: usize,
pub patterns_by_length: HashMap<usize, usize>,
}Expand description
Statistics for the bitmask matcher
Fields§
§total_patterns: usizeTotal number of patterns
patterns_by_length: HashMap<usize, usize>Number of patterns by segment length
Trait Implementations§
§impl Clone for BitmaskMatcherStatistics
impl Clone for BitmaskMatcherStatistics
§fn clone(&self) -> BitmaskMatcherStatistics
fn clone(&self) -> BitmaskMatcherStatistics
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 moreAuto Trait Implementations§
impl Freeze for BitmaskMatcherStatistics
impl RefUnwindSafe for BitmaskMatcherStatistics
impl Send for BitmaskMatcherStatistics
impl Sync for BitmaskMatcherStatistics
impl Unpin for BitmaskMatcherStatistics
impl UnwindSafe for BitmaskMatcherStatistics
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