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§
source§impl 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.
source§impl BooleanColumnStatisticsData
impl BooleanColumnStatisticsData
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BooleanColumnStatisticsData.
Trait Implementations§
source§impl Clone for BooleanColumnStatisticsData
impl Clone for BooleanColumnStatisticsData
source§fn clone(&self) -> BooleanColumnStatisticsData
fn clone(&self) -> BooleanColumnStatisticsData
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 BooleanColumnStatisticsData
impl Debug for BooleanColumnStatisticsData
source§impl PartialEq<BooleanColumnStatisticsData> for BooleanColumnStatisticsData
impl PartialEq<BooleanColumnStatisticsData> for BooleanColumnStatisticsData
source§fn eq(&self, other: &BooleanColumnStatisticsData) -> bool
fn eq(&self, other: &BooleanColumnStatisticsData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.