Struct aws_sdk_glue::model::BooleanColumnStatisticsData
source · [−]#[non_exhaustive]pub struct BooleanColumnStatisticsData { /* private fields */ }Expand description
Defines column statistics supported for Boolean data columns.
Implementations
sourceimpl BooleanColumnStatisticsData
impl BooleanColumnStatisticsData
sourcepub fn number_of_trues(&self) -> i64
pub fn number_of_trues(&self) -> i64
The number of true values in the column.
sourcepub fn number_of_falses(&self) -> i64
pub fn number_of_falses(&self) -> i64
The number of false values in the column.
sourcepub fn number_of_nulls(&self) -> i64
pub fn number_of_nulls(&self) -> i64
The number of null values in the column.
sourceimpl BooleanColumnStatisticsData
impl BooleanColumnStatisticsData
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BooleanColumnStatisticsData.
Trait Implementations
sourceimpl Clone for BooleanColumnStatisticsData
impl Clone for BooleanColumnStatisticsData
sourcefn clone(&self) -> BooleanColumnStatisticsData
fn clone(&self) -> BooleanColumnStatisticsData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BooleanColumnStatisticsData
impl Debug for BooleanColumnStatisticsData
sourceimpl PartialEq<BooleanColumnStatisticsData> for BooleanColumnStatisticsData
impl PartialEq<BooleanColumnStatisticsData> for BooleanColumnStatisticsData
sourcefn eq(&self, other: &BooleanColumnStatisticsData) -> bool
fn eq(&self, other: &BooleanColumnStatisticsData) -> bool
impl StructuralPartialEq for BooleanColumnStatisticsData
Auto Trait Implementations
impl RefUnwindSafe for BooleanColumnStatisticsData
impl Send for BooleanColumnStatisticsData
impl Sync for BooleanColumnStatisticsData
impl Unpin for BooleanColumnStatisticsData
impl UnwindSafe for BooleanColumnStatisticsData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more