pub enum Row<D, I>{
Data(D),
StyledData(D, Style),
}Expand description
Holds data to be displayed in a Table widget
Variants§
Auto Trait Implementations§
impl<D, I> Freeze for Row<D, I>where
D: Freeze,
impl<D, I> RefUnwindSafe for Row<D, I>where
D: RefUnwindSafe,
impl<D, I> Send for Row<D, I>where
D: Send,
impl<D, I> Sync for Row<D, I>where
D: Sync,
impl<D, I> Unpin for Row<D, I>where
D: Unpin,
impl<D, I> UnwindSafe for Row<D, I>where
D: UnwindSafe,
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