[][src]Struct google_bigquery2::TableListTables

pub struct TableListTables {
    pub clustering: Option<Clustering>,
    pub kind: Option<String>,
    pub creation_time: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub range_partitioning: Option<RangePartitioning>,
    pub id: Option<String>,
    pub friendly_name: Option<String>,
    pub time_partitioning: Option<TimePartitioning>,
    pub expiration_time: Option<String>,
    pub type_: Option<String>,
    pub table_reference: Option<TableReference>,
    pub view: Option<TableListTablesView>,
}

Tables in the requested dataset.

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

Fields

clustering: Option<Clustering>

[Beta] Clustering specification for this table, if configured.

kind: Option<String>

The resource type.

creation_time: Option<String>

The time when this table was created, in milliseconds since the epoch.

labels: Option<HashMap<String, String>>

The labels associated with this table. You can use these to organize and group your tables.

range_partitioning: Option<RangePartitioning>

The range partitioning specification for this table, if configured.

id: Option<String>

An opaque ID of the table

friendly_name: Option<String>

The user-friendly name for this table.

time_partitioning: Option<TimePartitioning>

The time-based partitioning specification for this table, if configured.

expiration_time: Option<String>

[Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.

type_: Option<String>

The type of table. Possible values are: TABLE, VIEW.

table_reference: Option<TableReference>

A reference uniquely identifying the table.

view: Option<TableListTablesView>

Additional details for a view.

Trait Implementations

impl Clone for TableListTables[src]

impl Debug for TableListTables[src]

impl Default for TableListTables[src]

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

impl NestedType for TableListTables[src]

impl Part for TableListTables[src]

impl Serialize for TableListTables[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