Struct google_content2::Table[][src]

pub struct Table {
    pub row_headers: Option<Headers>,
    pub rows: Option<Vec<Row>>,
    pub column_headers: Option<Headers>,
    pub name: Option<String>,
}

There is no detailed description.

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

Fields

Headers of the table's rows. Required.

The list of rows that constitute the table. Must have the same length as rowHeaders. Required.

Headers of the table's columns. Optional: if not set then the table has only one dimension.

Name of the table. Required for subtables, ignored for the main table.

Trait Implementations

impl Default for Table
[src]

Returns the "default value" for a type. Read more

impl Clone for Table
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Table
[src]

Formats the value using the given formatter. Read more

impl Part for Table
[src]

Auto Trait Implementations

impl Send for Table

impl Sync for Table