pub struct OColumnBaseChunk {
pub index: usize,
pub count: usize,
}Expand description
Numbers track their own index for sorting purposes
Fields§
§index: usizeThe index in the column. Will be updated during the writing phase when converted from a map to an array
count: usizetrack how many times this chunk is reused
Trait Implementations§
Source§impl Clone for OColumnBaseChunk
impl Clone for OColumnBaseChunk
Source§fn clone(&self) -> OColumnBaseChunk
fn clone(&self) -> OColumnBaseChunk
Returns a duplicate of the value. Read more
1.0.0 · 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 OColumnBaseChunk
impl Debug for OColumnBaseChunk
Source§impl Default for OColumnBaseChunk
impl Default for OColumnBaseChunk
Source§fn default() -> OColumnBaseChunk
fn default() -> OColumnBaseChunk
Returns the “default value” for a type. Read more
Source§impl Ord for OColumnBaseChunk
impl Ord for OColumnBaseChunk
Source§fn cmp(&self, other: &OColumnBaseChunk) -> Ordering
fn cmp(&self, other: &OColumnBaseChunk) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OColumnBaseChunk
impl PartialEq for OColumnBaseChunk
Source§impl PartialOrd for OColumnBaseChunk
impl PartialOrd for OColumnBaseChunk
impl Eq for OColumnBaseChunk
impl StructuralPartialEq for OColumnBaseChunk
Auto Trait Implementations§
impl Freeze for OColumnBaseChunk
impl RefUnwindSafe for OColumnBaseChunk
impl Send for OColumnBaseChunk
impl Sync for OColumnBaseChunk
impl Unpin for OColumnBaseChunk
impl UnwindSafe for OColumnBaseChunk
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