pub struct TableRow {
pub type_: TableRow_,
pub cells: Vec<TableCell>,
pub id: Option<Box<String>>,
pub row_type: Option<TableRowRowType>,
}
Expand description
A row within a Table.
Fields§
§type_: TableRow_
The name of this type
cells: Vec<TableCell>
An array of cells in the row.
id: Option<Box<String>>
The identifier for this item.
row_type: Option<TableRowRowType>
If present, indicates that all cells in this row should be treated as header cells.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableRow
impl<'de> Deserialize<'de> for TableRow
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
Auto Trait Implementations§
impl Freeze for TableRow
impl RefUnwindSafe for TableRow
impl Send for TableRow
impl Sync for TableRow
impl Unpin for TableRow
impl UnwindSafe for TableRow
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