[][src]Struct google_docs1::Table

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

A StructuralElement representing a table.

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

Fields

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.

table_style: Option<TableStyle>

The style of the table.

table_rows: Option<Vec<TableRow>>

The contents and style of each row.

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.

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.

Trait Implementations

impl Part for Table[src]

impl Default for Table[src]

impl Clone for Table[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Table[src]

impl Serialize for Table[src]

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

Auto Trait Implementations

impl Send for Table

impl Unpin for Table

impl Sync for Table

impl UnwindSafe for Table

impl RefUnwindSafe for Table

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]