pub struct Table {
pub columns: Vec<String>,
pub rows: Vec<Vec<Value>>,
}Expand description
An in-memory table with named columns and rows of values.
Fields§
§columns: Vec<String>Column names.
rows: Vec<Vec<Value>>Row data. Each inner Vec has one entry per column.
Implementations§
Trait Implementations§
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