Struct croaring_sys::roaring_statistics_s
source · [−]#[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: u32n_array_containers: u32n_run_containers: u32n_bitset_containers: u32n_values_array_containers: u32n_values_run_containers: u32n_values_bitset_containers: u32n_bytes_array_containers: u32n_bytes_run_containers: u32n_bytes_bitset_containers: u32max_value: u32min_value: u32sum_value: u64cardinality: u64Trait Implementations
sourceimpl Clone for roaring_statistics_s
impl Clone for roaring_statistics_s
sourcefn clone(&self) -> roaring_statistics_s
fn clone(&self) -> roaring_statistics_s
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for roaring_statistics_s
impl Debug for roaring_statistics_s
impl Copy for roaring_statistics_s
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more