pub struct IndexStats {
pub entries: u64,
pub approx_bytes: u64,
pub coerce_failures: u64,
pub duplicates: u64,
}Expand description
Sizing + health counters (IDX.LIST / memory formula).
Fields§
§entries: u64Live entries.
approx_bytes: u64Approximate heap bytes (RFC D7 formula’s measured side).
coerce_failures: u64Rows excluded because the field failed coercion / was missing.
duplicates: u64Values currently held by more than one key (unique fence).
Trait Implementations§
Source§impl Clone for SegmentStats
impl Clone for SegmentStats
Source§fn clone(&self) -> SegmentStats
fn clone(&self) -> SegmentStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SegmentStats
Source§impl Debug for SegmentStats
impl Debug for SegmentStats
Source§impl Default for SegmentStats
impl Default for SegmentStats
Source§fn default() -> SegmentStats
fn default() -> SegmentStats
Returns the “default value” for a type. Read more
impl Eq for SegmentStats
Source§impl PartialEq for SegmentStats
impl PartialEq for SegmentStats
Source§fn eq(&self, other: &SegmentStats) -> bool
fn eq(&self, other: &SegmentStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SegmentStats
Auto Trait Implementations§
impl Freeze for SegmentStats
impl RefUnwindSafe for SegmentStats
impl Send for SegmentStats
impl Sync for SegmentStats
impl Unpin for SegmentStats
impl UnsafeUnpin for SegmentStats
impl UnwindSafe for SegmentStats
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