pub struct TableData {
pub header: Vec<StyledText>,
pub alignments: Vec<Alignment>,
pub rows: Vec<Vec<StyledText>>,
}Expand description
Table block data, boxed inside Block::Table to keep enum size down.
Fields§
§header: Vec<StyledText>§alignments: Vec<Alignment>§rows: Vec<Vec<StyledText>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableData
impl RefUnwindSafe for TableData
impl !Send for TableData
impl !Sync for TableData
impl Unpin for TableData
impl UnsafeUnpin for TableData
impl UnwindSafe for TableData
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