pub struct DataTableCell<'a> {
pub text: &'a str,
pub html: Option<TrustedHtml<'a>>,
pub numeric: bool,
pub strong: bool,
pub muted: bool,
}Fields§
§text: &'a str§html: Option<TrustedHtml<'a>>§numeric: bool§strong: bool§muted: boolImplementations§
Source§impl<'a> DataTableCell<'a>
impl<'a> DataTableCell<'a>
Trait Implementations§
Source§impl<'a> Clone for DataTableCell<'a>
impl<'a> Clone for DataTableCell<'a>
Source§fn clone(&self) -> DataTableCell<'a>
fn clone(&self) -> DataTableCell<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for DataTableCell<'a>
impl<'a> Debug for DataTableCell<'a>
Source§impl<'a> PartialEq for DataTableCell<'a>
impl<'a> PartialEq for DataTableCell<'a>
Source§fn eq(&self, other: &DataTableCell<'a>) -> bool
fn eq(&self, other: &DataTableCell<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for DataTableCell<'a>
impl<'a> Eq for DataTableCell<'a>
impl<'a> StructuralPartialEq for DataTableCell<'a>
Auto Trait Implementations§
impl<'a> Freeze for DataTableCell<'a>
impl<'a> RefUnwindSafe for DataTableCell<'a>
impl<'a> Send for DataTableCell<'a>
impl<'a> Sync for DataTableCell<'a>
impl<'a> Unpin for DataTableCell<'a>
impl<'a> UnsafeUnpin for DataTableCell<'a>
impl<'a> UnwindSafe for DataTableCell<'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