#[repr(C)]pub struct roaring_statistics_s {Show 14 fields
pub n_containers: u32,
pub n_array_containers: u32,
pub n_run_containers: u32,
pub n_bitset_containers: u32,
pub n_values_array_containers: u32,
pub n_values_run_containers: u32,
pub n_values_bitset_containers: u32,
pub n_bytes_array_containers: u32,
pub n_bytes_run_containers: u32,
pub n_bytes_bitset_containers: u32,
pub max_value: u32,
pub min_value: u32,
pub sum_value: u64,
pub cardinality: u64,
}Expand description
(For advanced users.) The roaring_statistics_t can be used to collect detailed statistics about the composition of a roaring bitmap.
Fields§
§n_containers: u32§n_array_containers: u32§n_run_containers: u32§n_bitset_containers: u32§n_values_array_containers: u32§n_values_run_containers: u32§n_values_bitset_containers: u32§n_bytes_array_containers: u32§n_bytes_run_containers: u32§n_bytes_bitset_containers: u32§max_value: u32§min_value: u32§sum_value: u64§cardinality: u64Trait Implementations§
Source§impl Clone for roaring_statistics_s
impl Clone for roaring_statistics_s
Source§fn clone(&self) -> roaring_statistics_s
fn clone(&self) -> roaring_statistics_s
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 Debug for roaring_statistics_s
impl Debug for roaring_statistics_s
impl Copy for roaring_statistics_s
Auto Trait Implementations§
impl Freeze for roaring_statistics_s
impl RefUnwindSafe for roaring_statistics_s
impl Send for roaring_statistics_s
impl Sync for roaring_statistics_s
impl Unpin for roaring_statistics_s
impl UnwindSafe for roaring_statistics_s
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