Struct google_docs1::api::Table[][src]

pub struct Table {
    pub columns: Option<i32>,
    pub rows: Option<i32>,
    pub suggested_deletion_ids: Option<Vec<String>>,
    pub suggested_insertion_ids: Option<Vec<String>>,
    pub table_rows: Option<Vec<TableRow>>,
    pub table_style: Option<TableStyle>,
}

A StructuralElement representing a table.

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

Fields

columns: Option<i32>

Number of columns in the table. It is possible for a table to be non-rectangular, so some rows may have a different number of cells.

rows: Option<i32>

Number of rows in the table.

suggested_deletion_ids: Option<Vec<String>>

The suggested deletion IDs. If empty, then there are no suggested deletions of this content.

suggested_insertion_ids: Option<Vec<String>>

The suggested insertion IDs. A Table may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.

table_rows: Option<Vec<TableRow>>

The contents and style of each row.

table_style: Option<TableStyle>

The style of the table.

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 Part 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.