pub enum GroupedRowKind {
Group {
grouping_column: Arc<str>,
grouping_value: u64,
first_leaf_row_key: RowKey,
leaf_row_count: usize,
},
Leaf {
row_key: RowKey,
},
}Variants§
Trait Implementations§
Source§impl Clone for GroupedRowKind
impl Clone for GroupedRowKind
Source§fn clone(&self) -> GroupedRowKind
fn clone(&self) -> GroupedRowKind
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 moreAuto Trait Implementations§
impl Freeze for GroupedRowKind
impl RefUnwindSafe for GroupedRowKind
impl Send for GroupedRowKind
impl Sync for GroupedRowKind
impl Unpin for GroupedRowKind
impl UnsafeUnpin for GroupedRowKind
impl UnwindSafe for GroupedRowKind
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