pub enum DistinctKey {
Int(i64),
Float(u64),
Str(String),
Bool(bool),
Date(i32),
Decimal(i128),
}Variants§
Trait Implementations§
Source§impl Clone for DistinctKey
impl Clone for DistinctKey
Source§fn clone(&self) -> DistinctKey
fn clone(&self) -> DistinctKey
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 Hash for DistinctKey
impl Hash for DistinctKey
Source§impl PartialEq for DistinctKey
impl PartialEq for DistinctKey
impl Eq for DistinctKey
impl StructuralPartialEq for DistinctKey
Auto Trait Implementations§
impl Freeze for DistinctKey
impl RefUnwindSafe for DistinctKey
impl Send for DistinctKey
impl Sync for DistinctKey
impl Unpin for DistinctKey
impl UnwindSafe for DistinctKey
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