[][src]Struct rusoto_glue::SchemaColumn

pub struct SchemaColumn {
    pub data_type: Option<String>,
    pub name: Option<String>,
}

A key-value pair representing a column and data type that this transform can run against. The Schema parameter of the MLTransform may contain up to 100 of these structures.

Fields

data_type: Option<String>

The type of data in the column.

name: Option<String>

The name of the column.

Trait Implementations

impl Clone for SchemaColumn[src]

impl Debug for SchemaColumn[src]

impl Default for SchemaColumn[src]

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

impl PartialEq<SchemaColumn> for SchemaColumn[src]

impl Serialize for SchemaColumn[src]

impl StructuralPartialEq for SchemaColumn[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> 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.