[][src]Struct gcp_client::google::cloud::datacatalog::v1beta1::ColumnSchema

pub struct ColumnSchema {
    pub column: String,
    pub type: String,
    pub description: String,
    pub mode: String,
    pub subcolumns: Vec<ColumnSchema>,
}

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

Fields

column: String

Required. Name of the column.

type: String

Required. Type of the column.

description: String

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

mode: 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.

subcolumns: Vec<ColumnSchema>

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

Trait Implementations

impl Clone for ColumnSchema[src]

impl Debug for ColumnSchema[src]

impl Default for ColumnSchema[src]

impl Message for ColumnSchema[src]

impl PartialEq<ColumnSchema> for ColumnSchema[src]

impl StructuralPartialEq for ColumnSchema[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> 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> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]