pub struct Table {
pub name: String,
pub id: usize,
pub attributes: HashMap<String, f64>,
pub columns: Vec<Column>,
}
Expand description
A data table.
Fields§
§name: String
The name of the table.
id: usize
The ID of the table.
attributes: HashMap<String, f64>
Table attributes.
columns: Vec<Column>
The columns of the 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 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