Struct google_content2::api::Table [−][src]
pub struct Table {
pub column_headers: Option<Headers>,
pub name: Option<String>,
pub row_headers: Option<Headers>,
pub rows: Option<Vec<Row>>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
column_headers: Option<Headers>Headers of the table’s columns. Optional: if not set then the table has only one dimension.
name: Option<String>Name of the table. Required for subtables, ignored for the main table.
row_headers: Option<Headers>Headers of the table’s rows. Required.
rows: Option<Vec<Row>>The list of rows that constitute the table. Must have the same length as rowHeaders. Required.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Table
impl UnwindSafe for Table
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more