Struct aws_sdk_glue::model::ColumnStatistics
source ·
[−]#[non_exhaustive]pub struct ColumnStatistics {
pub column_name: Option<String>,
pub column_type: Option<String>,
pub analyzed_time: Option<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
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.column_name: Option<String>
Name of column which statistics belong to.
column_type: Option<String>
The data type of the column.
analyzed_time: Option<DateTime>
The timestamp of when column statistics were generated.
statistics_data: Option<ColumnStatisticsData>
A ColumnStatisticData
object that contains the statistics data values.
Implementations
Name of column which statistics belong to.
The data type of the column.
The timestamp of when column statistics were generated.
A ColumnStatisticData
object that contains the statistics data values.
Creates a new builder-style object to manufacture ColumnStatistics
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more