Struct nektar::DateColumnStatsData
source · pub struct DateColumnStatsData {
pub low_value: Option<Date>,
pub high_value: Option<Date>,
pub num_nulls: i64,
pub num_d_vs: i64,
pub bit_vectors: Option<Vec<u8>>,
}Fields§
§low_value: Option<Date>§high_value: Option<Date>§num_nulls: i64§num_d_vs: i64§bit_vectors: Option<Vec<u8>>Implementations§
Trait Implementations§
source§impl Clone for DateColumnStatsData
impl Clone for DateColumnStatsData
source§fn clone(&self) -> DateColumnStatsData
fn clone(&self) -> DateColumnStatsData
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 DateColumnStatsData
impl Debug for DateColumnStatsData
source§impl Hash for DateColumnStatsData
impl Hash for DateColumnStatsData
source§impl Ord for DateColumnStatsData
impl Ord for DateColumnStatsData
source§fn cmp(&self, other: &DateColumnStatsData) -> Ordering
fn cmp(&self, other: &DateColumnStatsData) -> 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 DateColumnStatsData
impl PartialEq for DateColumnStatsData
source§fn eq(&self, other: &DateColumnStatsData) -> bool
fn eq(&self, other: &DateColumnStatsData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for DateColumnStatsData
impl PartialOrd for DateColumnStatsData
source§fn partial_cmp(&self, other: &DateColumnStatsData) -> Option<Ordering>
fn partial_cmp(&self, other: &DateColumnStatsData) -> 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 DateColumnStatsData
impl TSerializable for DateColumnStatsData
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol ) -> Result<DateColumnStatsData>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for DateColumnStatsData
impl StructuralEq for DateColumnStatsData
impl StructuralPartialEq for DateColumnStatsData
Auto Trait Implementations§
impl RefUnwindSafe for DateColumnStatsData
impl Send for DateColumnStatsData
impl Sync for DateColumnStatsData
impl Unpin for DateColumnStatsData
impl UnwindSafe for DateColumnStatsData
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