Struct flatcontainer::impls::codec::MisraGries
source · pub struct MisraGries<T> { /* private fields */ }
Expand description
Maintains a summary of “heavy hitters” in a presented collection of items.
Implementations§
source§impl<T: Ord> MisraGries<T>
impl<T: Ord> MisraGries<T>
sourcepub fn update(&mut self, element: T, count: usize)
pub fn update(&mut self, element: T, count: usize)
Inserts multiple copies of an element to the summary.
sourcepub fn with_capacity(k: usize) -> Self
pub fn with_capacity(k: usize) -> Self
Allocates a Misra-Gries summary which intends to hold up to k
examples.
After n
insertions it will contain only elements that were inserted at least n/k
times.
The actual memory use is proportional to 2 * k
, so that we can amortize the consolidation.
Trait Implementations§
source§impl<T: Clone> Clone for MisraGries<T>
impl<T: Clone> Clone for MisraGries<T>
source§fn clone(&self) -> MisraGries<T>
fn clone(&self) -> MisraGries<T>
Returns a copy 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<T: Debug> Debug for MisraGries<T>
impl<T: Debug> Debug for MisraGries<T>
Auto Trait Implementations§
impl<T> Freeze for MisraGries<T>
impl<T> RefUnwindSafe for MisraGries<T>where
T: RefUnwindSafe,
impl<T> Send for MisraGries<T>where
T: Send,
impl<T> Sync for MisraGries<T>where
T: Sync,
impl<T> Unpin for MisraGries<T>where
T: Unpin,
impl<T> UnwindSafe for MisraGries<T>where
T: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)