pub struct TableRow {
pub head: bool,
pub cells: Vec<TableCell>,
}Expand description
One row of a table’s grid, as the document spells it — not as it’s drawn.
Fields§
§head: boolA header row: drawn bold, and ruled off from the body below it.
cells: Vec<TableCell>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableRow
impl RefUnwindSafe for TableRow
impl Send for TableRow
impl Sync for TableRow
impl Unpin for TableRow
impl UnsafeUnpin 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