#[non_exhaustive]pub struct LayoutTableRow {
pub cells: Vec<LayoutTableCell>,
/* private fields */
}Expand description
Represents a row in a table.
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.cells: Vec<LayoutTableCell>A table row is a list of table cells.
Implementations§
Trait Implementations§
Source§impl Clone for LayoutTableRow
impl Clone for LayoutTableRow
Source§fn clone(&self) -> LayoutTableRow
fn clone(&self) -> LayoutTableRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LayoutTableRow
impl Debug for LayoutTableRow
Source§impl Default for LayoutTableRow
impl Default for LayoutTableRow
Source§fn default() -> LayoutTableRow
fn default() -> LayoutTableRow
Returns the “default value” for a type. Read more
Source§impl Message for LayoutTableRow
impl Message for LayoutTableRow
Source§impl PartialEq for LayoutTableRow
impl PartialEq for LayoutTableRow
impl StructuralPartialEq for LayoutTableRow
Auto Trait Implementations§
impl Freeze for LayoutTableRow
impl RefUnwindSafe for LayoutTableRow
impl Send for LayoutTableRow
impl Sync for LayoutTableRow
impl Unpin for LayoutTableRow
impl UnwindSafe for LayoutTableRow
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