pub enum GroupKey {
Int(i64),
Float(FloatKey),
Str(String),
Bool(bool),
}Expand description
Owned group key — used for storing unique group values.
Variants§
Implementations§
Source§impl GroupKey
impl GroupKey
Sourcepub fn from_column(col: &Column, row: usize) -> Self
pub fn from_column(col: &Column, row: usize) -> Self
Construct from a column at a given row.
Sourcepub fn to_display(&self) -> String
pub fn to_display(&self) -> String
Display as string.
Trait Implementations§
Source§impl Ord for GroupKey
impl Ord for GroupKey
Source§impl PartialOrd for GroupKey
impl PartialOrd for GroupKey
impl Eq for GroupKey
impl StructuralPartialEq for GroupKey
Auto Trait Implementations§
impl Freeze for GroupKey
impl RefUnwindSafe for GroupKey
impl Send for GroupKey
impl Sync for GroupKey
impl Unpin for GroupKey
impl UnsafeUnpin for GroupKey
impl UnwindSafe for GroupKey
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