pub struct Table {
pub header: Vec<String>,
pub rows: Vec<Vec<String>>,
}Expand description
A parsed delimited table: a header (column names) and the data rows.
Fields§
§header: Vec<String>The column names from the header row.
rows: Vec<Vec<String>>The data rows (each a vector of cell values aligned to header).
Trait Implementations§
impl Eq for Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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