[][src]Struct rusoto_glue::ColumnStatisticsData

pub struct ColumnStatisticsData {
    pub binary_column_statistics_data: Option<BinaryColumnStatisticsData>,
    pub boolean_column_statistics_data: Option<BooleanColumnStatisticsData>,
    pub date_column_statistics_data: Option<DateColumnStatisticsData>,
    pub decimal_column_statistics_data: Option<DecimalColumnStatisticsData>,
    pub double_column_statistics_data: Option<DoubleColumnStatisticsData>,
    pub long_column_statistics_data: Option<LongColumnStatisticsData>,
    pub string_column_statistics_data: Option<StringColumnStatisticsData>,
    pub type_: String,
}

Contains the individual types of column statistics data. Only one data object should be set and indicated by the Type attribute.

Fields

binary_column_statistics_data: Option<BinaryColumnStatisticsData>

Binary column statistics data.

boolean_column_statistics_data: Option<BooleanColumnStatisticsData>

Boolean column statistics data.

date_column_statistics_data: Option<DateColumnStatisticsData>

Date column statistics data.

decimal_column_statistics_data: Option<DecimalColumnStatisticsData>

Decimal column statistics data.

double_column_statistics_data: Option<DoubleColumnStatisticsData>

Double column statistics data.

long_column_statistics_data: Option<LongColumnStatisticsData>

Long column statistics data.

string_column_statistics_data: Option<StringColumnStatisticsData>

String column statistics data.

type_: String

The type of column statistics data.

Trait Implementations

impl Clone for ColumnStatisticsData[src]

impl Debug for ColumnStatisticsData[src]

impl Default for ColumnStatisticsData[src]

impl<'de> Deserialize<'de> for ColumnStatisticsData[src]

impl PartialEq<ColumnStatisticsData> for ColumnStatisticsData[src]

impl Serialize for ColumnStatisticsData[src]

impl StructuralPartialEq for ColumnStatisticsData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.