pub struct OwnedDataTableRow {
pub cells: Vec<OwnedDataTableCell>,
pub selected: bool,
}Fields§
§cells: Vec<OwnedDataTableCell>§selected: boolImplementations§
Trait Implementations§
Source§impl Clone for OwnedDataTableRow
impl Clone for OwnedDataTableRow
Source§fn clone(&self) -> OwnedDataTableRow
fn clone(&self) -> OwnedDataTableRow
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 Debug for OwnedDataTableRow
impl Debug for OwnedDataTableRow
Source§impl PartialEq for OwnedDataTableRow
impl PartialEq for OwnedDataTableRow
Source§fn eq(&self, other: &OwnedDataTableRow) -> bool
fn eq(&self, other: &OwnedDataTableRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OwnedDataTableRow
impl StructuralPartialEq for OwnedDataTableRow
Auto Trait Implementations§
impl Freeze for OwnedDataTableRow
impl RefUnwindSafe for OwnedDataTableRow
impl Send for OwnedDataTableRow
impl Sync for OwnedDataTableRow
impl Unpin for OwnedDataTableRow
impl UnsafeUnpin for OwnedDataTableRow
impl UnwindSafe for OwnedDataTableRow
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