pub struct HyperLogLogStats {
pub total_hlls: u64,
pub pfadd_count: u64,
pub pfcount_count: u64,
pub pfmerge_count: u64,
pub total_cardinality: u64,
}Expand description
HyperLogLog statistics
Fields§
§total_hlls: u64§pfadd_count: u64§pfcount_count: u64§pfmerge_count: u64§total_cardinality: u64Trait Implementations§
Source§impl Clone for HyperLogLogStats
impl Clone for HyperLogLogStats
Source§fn clone(&self) -> HyperLogLogStats
fn clone(&self) -> HyperLogLogStats
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 HyperLogLogStats
impl Debug for HyperLogLogStats
Source§impl Default for HyperLogLogStats
impl Default for HyperLogLogStats
Source§fn default() -> HyperLogLogStats
fn default() -> HyperLogLogStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HyperLogLogStats
impl<'de> Deserialize<'de> for HyperLogLogStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HyperLogLogStats
impl RefUnwindSafe for HyperLogLogStats
impl Send for HyperLogLogStats
impl Sync for HyperLogLogStats
impl Unpin for HyperLogLogStats
impl UnsafeUnpin for HyperLogLogStats
impl UnwindSafe for HyperLogLogStats
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