#[non_exhaustive]pub struct TableCardCell {
pub text: String,
/* private fields */
}Available on crate features
answer-records or intents or participants or sessions only.Expand description
Cell of TableCardRow.
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.text: StringRequired. Text in this cell.
Implementations§
Trait Implementations§
Source§impl Clone for TableCardCell
impl Clone for TableCardCell
Source§fn clone(&self) -> TableCardCell
fn clone(&self) -> TableCardCell
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 TableCardCell
impl Debug for TableCardCell
Source§impl Default for TableCardCell
impl Default for TableCardCell
Source§fn default() -> TableCardCell
fn default() -> TableCardCell
Returns the “default value” for a type. Read more
Source§impl Message for TableCardCell
impl Message for TableCardCell
Source§impl PartialEq for TableCardCell
impl PartialEq for TableCardCell
impl StructuralPartialEq for TableCardCell
Auto Trait Implementations§
impl Freeze for TableCardCell
impl RefUnwindSafe for TableCardCell
impl Send for TableCardCell
impl Sync for TableCardCell
impl Unpin for TableCardCell
impl UnwindSafe for TableCardCell
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