#[non_exhaustive]pub struct TableRow<'a> {
pub columns: Vec<TableColumn<'a>>,
}Expand description
A row in a table, containing one or more columns (cells).
§Note on Field Name
The field is named columns (not cells) to align with the column-oriented
table model. Each TableColumn represents one cell in this row.
fn count_cells(row: &TableRow) -> usize {
row.columns.len() // Access cells via .columns
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.columns: Vec<TableColumn<'a>>The cells in this row (one per table column).
Implementations§
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> UnsafeUnpin 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