pub struct TableRow {
pub cells: Vec<TableCell>,
pub height: f64,
pub is_header: bool,
}Expand description
A laid-out table row.
Fields§
§cells: Vec<TableCell>Cells in this row.
height: f64Row height in points.
is_header: boolWhether this row is a header row.
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