pub struct ChunkTable {
pub names: Vec<String>,
pub cols: Vec<ColumnVec>,
}Expand description
Feature matrix columns (no target column), in schema order.
Fields§
§names: Vec<String>§cols: Vec<ColumnVec>Implementations§
Trait Implementations§
Source§impl Clone for ChunkTable
impl Clone for ChunkTable
Source§fn clone(&self) -> ChunkTable
fn clone(&self) -> ChunkTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ChunkTable
impl RefUnwindSafe for ChunkTable
impl Send for ChunkTable
impl Sync for ChunkTable
impl Unpin for ChunkTable
impl UnsafeUnpin for ChunkTable
impl UnwindSafe for ChunkTable
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