pub struct TableStats {
pub total_inserts: u64,
pub total_lookups: u64,
pub total_probes: u64,
pub max_probe_length: u32,
pub level_usage: Vec<usize>,
}Expand description
Performance metrics for hash table operations.
Used for benchmarking, profiling, and comparing implementations.
Fields§
§total_inserts: u64Total number of insert operations performed
total_lookups: u64Total number of lookup operations performed
total_probes: u64Total number of probe steps across all operations
A probe is a single slot check during insertion or lookup. Lower is better — indicates fewer collisions.
max_probe_length: u32Maximum probe length seen in any single operation
Indicates worst-case behavior. Should be kept low (<10).
level_usage: Vec<usize>Distribution of entries across levels (Elastic Hash only)
- Index 0 = Level 0 (largest, 50% of capacity)
- Index 1 = Level 1 (25% of capacity)
- Index 2 = Level 2 (12.5% of capacity)
- …
Empty for non-leveled implementations like StandardHashTable.
Implementations§
Source§impl TableStats
impl TableStats
Sourcepub fn avg_probes_per_op(&self) -> f64
pub fn avg_probes_per_op(&self) -> f64
Returns the average number of probes per operation.
Ideally close to 1.0 (one probe per operation). Higher values indicate more collisions.
Trait Implementations§
Source§impl Clone for TableStats
impl Clone for TableStats
Source§fn clone(&self) -> TableStats
fn clone(&self) -> TableStats
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 TableStats
impl Debug for TableStats
Source§impl Default for TableStats
impl Default for TableStats
Source§fn default() -> TableStats
fn default() -> TableStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableStats
impl RefUnwindSafe for TableStats
impl Send for TableStats
impl Sync for TableStats
impl Unpin for TableStats
impl UnsafeUnpin for TableStats
impl UnwindSafe for TableStats
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more