pub struct BatchChunk {
pub names: Vec<String>,
pub cols: Vec<BatchColumn>,
}Expand description
Feature columns from one batch — Arrow buffers shared via ArrayRef where possible.
Fields§
§names: Vec<String>§cols: Vec<BatchColumn>Implementations§
Trait Implementations§
Source§impl Clone for BatchChunk
impl Clone for BatchChunk
Source§fn clone(&self) -> BatchChunk
fn clone(&self) -> BatchChunk
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 BatchChunk
impl !RefUnwindSafe for BatchChunk
impl Send for BatchChunk
impl Sync for BatchChunk
impl Unpin for BatchChunk
impl UnsafeUnpin for BatchChunk
impl !UnwindSafe for BatchChunk
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