pub struct Int64Column {
pub id: VariableId,
pub values: Arc<[i64]>,
pub validity: ValidityBitmap,
}Expand description
Owned int64 column.
Fields§
§id: VariableIdVariable id.
values: Arc<[i64]>Values.
validity: ValidityBitmapValidity.
Implementations§
Trait Implementations§
Source§impl Clone for Int64Column
impl Clone for Int64Column
Source§fn clone(&self) -> Int64Column
fn clone(&self) -> Int64Column
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 moreSource§impl Debug for Int64Column
impl Debug for Int64Column
impl Eq for Int64Column
Source§impl PartialEq for Int64Column
impl PartialEq for Int64Column
impl StructuralPartialEq for Int64Column
Auto Trait Implementations§
impl Freeze for Int64Column
impl RefUnwindSafe for Int64Column
impl Send for Int64Column
impl Sync for Int64Column
impl Unpin for Int64Column
impl UnsafeUnpin for Int64Column
impl UnwindSafe for Int64Column
Blanket Implementations§
impl<T> Allocation for T
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