[][src]Struct croaring_sys_mw::roaring_statistics_s

#[repr(C)]pub struct roaring_statistics_s {
    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,
}

(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: u64

Trait Implementations

impl Clone for roaring_statistics_s[src]

impl Copy for roaring_statistics_s[src]

impl Debug for roaring_statistics_s[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.