pub struct ValueFrequency {
pub value: Vec<u8>,
pub frequency: u64,
pub percentage: f64,
}Expand description
Value frequency information for column statistics
Fields§
§value: Vec<u8>Serialized value (truncated for large values)
frequency: u64Number of occurrences
percentage: f64Percentage of total non-null values
Trait Implementations§
Source§impl Clone for ValueFrequency
impl Clone for ValueFrequency
Source§fn clone(&self) -> ValueFrequency
fn clone(&self) -> ValueFrequency
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 moreSource§impl Debug for ValueFrequency
impl Debug for ValueFrequency
Source§impl<'de> Deserialize<'de> for ValueFrequency
impl<'de> Deserialize<'de> for ValueFrequency
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 ValueFrequency
impl RefUnwindSafe for ValueFrequency
impl Send for ValueFrequency
impl Sync for ValueFrequency
impl Unpin for ValueFrequency
impl UnsafeUnpin for ValueFrequency
impl UnwindSafe for ValueFrequency
Blanket Implementations§
impl<T> Allocation for T
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