pub struct TableData {
pub table_index: usize,
pub name: Option<String>,
pub columns: Vec<ColumnData>,
}Expand description
Table data from import
Fields§
§table_index: usize§name: Option<String>§columns: Vec<ColumnData>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 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