Struct google_area120tables1_alpha1::api::Table[][src]

pub struct Table {
    pub columns: Option<Vec<ColumnDescription>>,
    pub create_time: Option<String>,
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub update_time: Option<String>,
}

A single table.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

columns: Option<Vec<ColumnDescription>>

List of columns in this table. Order of columns matches the display order.

create_time: Option<String>

Time when the table was created.

display_name: Option<String>

The human readable title of the table.

name: Option<String>

The resource name of the table. Table names have the form tables/{table}.

update_time: Option<String>

Time when the table was last updated excluding updates to individual rows

Trait Implementations

impl Clone for Table[src]

impl Debug for Table[src]

impl Default for Table[src]

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

impl Resource for Table[src]

impl ResponseResult for Table[src]

impl Serialize 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> 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, 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.