Struct aws_sdk_glue::types::ColumnStatistics
source · #[non_exhaustive]pub struct ColumnStatistics {
pub column_name: String,
pub column_type: String,
pub analyzed_time: DateTime,
pub statistics_data: Option<ColumnStatisticsData>,
}
Expand description
Represents the generated column-level statistics for a table or partition.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.column_name: String
Name of column which statistics belong to.
column_type: String
The data type of the column.
analyzed_time: DateTime
The timestamp of when column statistics were generated.
statistics_data: Option<ColumnStatisticsData>
A ColumnStatisticData
object that contains the statistics data values.
Implementations§
source§impl ColumnStatistics
impl ColumnStatistics
sourcepub fn column_name(&self) -> &str
pub fn column_name(&self) -> &str
Name of column which statistics belong to.
sourcepub fn column_type(&self) -> &str
pub fn column_type(&self) -> &str
The data type of the column.
sourcepub fn analyzed_time(&self) -> &DateTime
pub fn analyzed_time(&self) -> &DateTime
The timestamp of when column statistics were generated.
sourcepub fn statistics_data(&self) -> Option<&ColumnStatisticsData>
pub fn statistics_data(&self) -> Option<&ColumnStatisticsData>
A ColumnStatisticData
object that contains the statistics data values.
source§impl ColumnStatistics
impl ColumnStatistics
sourcepub fn builder() -> ColumnStatisticsBuilder
pub fn builder() -> ColumnStatisticsBuilder
Creates a new builder-style object to manufacture ColumnStatistics
.
Trait Implementations§
source§impl Clone for ColumnStatistics
impl Clone for ColumnStatistics
source§fn clone(&self) -> ColumnStatistics
fn clone(&self) -> ColumnStatistics
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 ColumnStatistics
impl Debug for ColumnStatistics
source§impl PartialEq for ColumnStatistics
impl PartialEq for ColumnStatistics
source§fn eq(&self, other: &ColumnStatistics) -> bool
fn eq(&self, other: &ColumnStatistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ColumnStatistics
Auto Trait Implementations§
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.