Struct nektar::BinaryColumnStatsData
source · pub struct BinaryColumnStatsData {
pub max_col_len: i64,
pub avg_col_len: OrderedFloat<f64>,
pub num_nulls: i64,
pub bit_vectors: Option<Vec<u8>>,
}Fields§
§max_col_len: i64§avg_col_len: OrderedFloat<f64>§num_nulls: i64§bit_vectors: Option<Vec<u8>>Implementations§
Trait Implementations§
source§impl Clone for BinaryColumnStatsData
impl Clone for BinaryColumnStatsData
source§fn clone(&self) -> BinaryColumnStatsData
fn clone(&self) -> BinaryColumnStatsData
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 BinaryColumnStatsData
impl Debug for BinaryColumnStatsData
source§impl Hash for BinaryColumnStatsData
impl Hash for BinaryColumnStatsData
source§impl Ord for BinaryColumnStatsData
impl Ord for BinaryColumnStatsData
source§fn cmp(&self, other: &BinaryColumnStatsData) -> Ordering
fn cmp(&self, other: &BinaryColumnStatsData) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for BinaryColumnStatsData
impl PartialEq for BinaryColumnStatsData
source§fn eq(&self, other: &BinaryColumnStatsData) -> bool
fn eq(&self, other: &BinaryColumnStatsData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for BinaryColumnStatsData
impl PartialOrd for BinaryColumnStatsData
source§fn partial_cmp(&self, other: &BinaryColumnStatsData) -> Option<Ordering>
fn partial_cmp(&self, other: &BinaryColumnStatsData) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl TSerializable for BinaryColumnStatsData
impl TSerializable for BinaryColumnStatsData
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol ) -> Result<BinaryColumnStatsData>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for BinaryColumnStatsData
impl StructuralEq for BinaryColumnStatsData
impl StructuralPartialEq for BinaryColumnStatsData
Auto Trait Implementations§
impl RefUnwindSafe for BinaryColumnStatsData
impl Send for BinaryColumnStatsData
impl Sync for BinaryColumnStatsData
impl Unpin for BinaryColumnStatsData
impl UnwindSafe for BinaryColumnStatsData
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