pub struct TableCell {
pub type_: TableCell_,
pub cell_type: Option<TableCellCellType>,
pub colspan: Option<u32>,
pub content: Option<TableCellContent>,
pub id: Option<Box<String>>,
pub name: Option<Box<String>>,
pub rowspan: Option<u32>,
}
Expand description
A cell within a Table
.
Fields§
§type_: TableCell_
The name of this type
cell_type: Option<TableCellCellType>
Indicates whether the cell is a header or data.
colspan: Option<u32>
How many columns the cell extends.
content: Option<TableCellContent>
Contents of the table cell.
id: Option<Box<String>>
The identifier for this item.
name: Option<Box<String>>
The name of the cell.
rowspan: Option<u32>
How many columns the cell extends.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableCell
impl<'de> Deserialize<'de> for TableCell
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 TableCell
impl RefUnwindSafe for TableCell
impl Send for TableCell
impl Sync for TableCell
impl Unpin for TableCell
impl UnwindSafe for TableCell
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