pub struct TableRow<'a> {
pub cells: Vec<TableCell<'a>>,
pub header: bool,
pub span: Span,
}Expand description
A single table row.
Fields§
§cells: Vec<TableCell<'a>>Cells in this row.
header: boolWhether this is a header row.
span: SpanSource span.
Trait Implementations§
impl<'a> StructuralPartialEq for TableRow<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableRow<'a>
impl<'a> RefUnwindSafe for TableRow<'a>
impl<'a> Send for TableRow<'a>
impl<'a> Sync for TableRow<'a>
impl<'a> Unpin for TableRow<'a>
impl<'a> UnwindSafe for TableRow<'a>
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