pub struct ColumnStatistics {
pub stats_desc: ColumnStatisticsDesc,
pub stats_obj: Vec<ColumnStatisticsObj>,
}Fields§
§stats_desc: ColumnStatisticsDesc§stats_obj: Vec<ColumnStatisticsObj>Implementations§
Source§impl ColumnStatistics
impl ColumnStatistics
pub fn new( stats_desc: ColumnStatisticsDesc, stats_obj: Vec<ColumnStatisticsObj>, ) -> ColumnStatistics
Trait Implementations§
Source§impl Clone for ColumnStatistics
impl Clone for ColumnStatistics
Source§fn clone(&self) -> ColumnStatistics
fn clone(&self) -> ColumnStatistics
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 ColumnStatistics
impl Debug for ColumnStatistics
Source§impl Hash for ColumnStatistics
impl Hash for ColumnStatistics
Source§impl Ord for ColumnStatistics
impl Ord for ColumnStatistics
Source§fn cmp(&self, other: &ColumnStatistics) -> Ordering
fn cmp(&self, other: &ColumnStatistics) -> 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 ColumnStatistics
impl PartialEq for ColumnStatistics
Source§impl PartialOrd for ColumnStatistics
impl PartialOrd for ColumnStatistics
Source§impl TSerializable for ColumnStatistics
impl TSerializable for ColumnStatistics
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<ColumnStatistics>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for ColumnStatistics
impl StructuralPartialEq for ColumnStatistics
Auto Trait Implementations§
impl Freeze for ColumnStatistics
impl RefUnwindSafe for ColumnStatistics
impl Send for ColumnStatistics
impl Sync for ColumnStatistics
impl Unpin for ColumnStatistics
impl UnwindSafe for ColumnStatistics
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