#[non_exhaustive]pub struct TableCardRow {
pub cells: Vec<TableCardCell>,
pub divider_after: bool,
/* private fields */
}Available on crate features
answer-records or intents or participants or sessions only.Expand description
Row of TableCard.
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<TableCardCell>Optional. List of cells that make up this row.
divider_after: boolOptional. Whether to add a visual divider after this row.
Implementations§
Trait Implementations§
Source§impl Clone for TableCardRow
impl Clone for TableCardRow
Source§fn clone(&self) -> TableCardRow
fn clone(&self) -> TableCardRow
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 TableCardRow
impl Debug for TableCardRow
Source§impl Default for TableCardRow
impl Default for TableCardRow
Source§fn default() -> TableCardRow
fn default() -> TableCardRow
Returns the “default value” for a type. Read more
Source§impl Message for TableCardRow
impl Message for TableCardRow
Source§impl PartialEq for TableCardRow
impl PartialEq for TableCardRow
impl StructuralPartialEq for TableCardRow
Auto Trait Implementations§
impl Freeze for TableCardRow
impl RefUnwindSafe for TableCardRow
impl Send for TableCardRow
impl Sync for TableCardRow
impl Unpin for TableCardRow
impl UnwindSafe for TableCardRow
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