[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1ColumnSchema

pub struct GoogleCloudDatacatalogV1beta1ColumnSchema {
    pub column: Option<String>,
    pub subcolumns: Option<Vec<GoogleCloudDatacatalogV1beta1ColumnSchema>>,
    pub type_: Option<String>,
    pub description: Option<String>,
    pub mode: Option<String>,
}

Representation of a column within a schema. Columns could be nested inside other columns.

This type is not used in any activity, and only used as part of another schema.

Fields

column: Option<String>

Required. Name of the column.

subcolumns: Option<Vec<GoogleCloudDatacatalogV1beta1ColumnSchema>>

Optional. Schema of sub-columns. A column can have zero or more sub-columns.

type_: Option<String>

Required. Type of the column.

description: Option<String>

Optional. Description of the column. Default value is an empty string.

mode: Option<String>

Optional. A column's mode indicates whether the values in this column are required, nullable, etc. Only NULLABLE, REQUIRED and REPEATED are supported. Default mode is NULLABLE.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1ColumnSchema[src]

impl Debug for GoogleCloudDatacatalogV1beta1ColumnSchema[src]

impl Default for GoogleCloudDatacatalogV1beta1ColumnSchema[src]

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

impl Part for GoogleCloudDatacatalogV1beta1ColumnSchema[src]

impl Serialize for GoogleCloudDatacatalogV1beta1ColumnSchema[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Typeable for T where
    T: Any