Struct gapi_grpc::google::cloud::bigquery::logging::v1::Table[][src]

pub struct Table {
    pub table_name: Option<TableName>,
    pub info: Option<TableInfo>,
    pub schema_json: String,
    pub view: Option<TableViewDefinition>,
    pub expire_time: Option<Timestamp>,
    pub create_time: Option<Timestamp>,
    pub truncate_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub encryption: Option<EncryptionInfo>,
}

Describes a BigQuery table. See the Table API resource for more details on individual fields. Note: Table.schema has been deprecated in favor of Table.schemaJson. Table.schema may continue to be present in your logs during this transition.

Fields

table_name: Option<TableName>

The name of the table.

info: Option<TableInfo>

User-provided metadata for the table.

schema_json: String

A JSON representation of the table’s schema.

view: Option<TableViewDefinition>

If present, this is a virtual table defined by a SQL query.

expire_time: Option<Timestamp>

The expiration date for the table, after which the table is deleted and the storage reclaimed. If not present, the table persists indefinitely.

create_time: Option<Timestamp>

The time the table was created.

truncate_time: Option<Timestamp>

The time the table was last truncated by an operation with a writeDisposition of WRITE_TRUNCATE.

update_time: Option<Timestamp>

The time the table was last modified.

encryption: Option<EncryptionInfo>

The table encryption information. Set when non-default encryption is used.

Trait Implementations

impl Clone for Table[src]

impl Debug for Table[src]

impl Default for Table[src]

impl Message for Table[src]

impl PartialEq<Table> for Table[src]

impl StructuralPartialEq for Table[src]

Auto Trait Implementations

impl RefUnwindSafe for Table

impl Send for Table

impl Sync for Table

impl Unpin for Table

impl UnwindSafe for Table

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]