pub struct DataTable {
pub data_cols: Vec<DataColumn>,
}Expand description
A data table consisting of varying column types and headers.
Fields§
§data_cols: Vec<DataColumn>Vector of DataColumns.
Implementations§
Source§impl DataTable
impl DataTable
Sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the table and it’s underlying columns.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataTable
impl RefUnwindSafe for DataTable
impl Send for DataTable
impl Sync for DataTable
impl Unpin for DataTable
impl UnwindSafe for DataTable
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