pub struct Table {
pub column_properties: Option<Vec<TableColumnProperties>>,
pub name: Option<String>,
pub range: Option<GridRange>,
pub rows_properties: Option<TableRowsProperties>,
pub table_id: Option<String>,
}Expand description
A table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§column_properties: Option<Vec<TableColumnProperties>>The table column properties.
name: Option<String>The table name. This is unique to all tables in the same spreadsheet.
range: Option<GridRange>The table range.
rows_properties: Option<TableRowsProperties>The table rows properties.
table_id: Option<String>The id of the table.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Table
impl<'de> Deserialize<'de> for Table
Source§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
impl Part for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more