pub struct Table {
pub rows: Vec<Row>,
pub declared: HashMap<String, FieldType>,
pub provenance: DataProvenance,
}Expand description
Normalized data ready for the compiler: row-major rows (as the compiler has always consumed), declared column types, and where it all came from.
Fields§
§rows: Vec<Row>§declared: HashMap<String, FieldType>§provenance: DataProvenanceTrait 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