pub enum BatchColumn {
F32(ArrayRef),
F64(ArrayRef),
Utf8(ArrayRef),
Owned(ColumnVec),
}Expand description
Column storage for one batch pass.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BatchColumn
impl Clone for BatchColumn
Source§fn clone(&self) -> BatchColumn
fn clone(&self) -> BatchColumn
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 BatchColumn
impl !RefUnwindSafe for BatchColumn
impl Send for BatchColumn
impl Sync for BatchColumn
impl Unpin for BatchColumn
impl UnsafeUnpin for BatchColumn
impl !UnwindSafe for BatchColumn
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