pub enum Column {
Int64(Vec<i64>),
Float32(Vec<f32>),
Float64(Vec<f64>),
Bool(Vec<bool>),
Binary(Vec<Vec<u8>>),
Fixed {
len: usize,
values: Vec<Vec<u8>>,
},
}Expand description
In-memory representation of a column.
Variants§
Int64(Vec<i64>)
Column of i64 values.
Float32(Vec<f32>)
Column of f32 values.
Float64(Vec<f64>)
Column of f64 values.
Bool(Vec<bool>)
Column of bool values.
Binary(Vec<Vec<u8>>)
Column of variable-length binary values.
Fixed
Column of fixed-length binary values.
Trait Implementations§
impl StructuralPartialEq for Column
Auto Trait Implementations§
impl Freeze for Column
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
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