pub enum CelKey {
Int(i64),
UInt(u64),
Bool(bool),
String(Arc<String>),
}
Variants§
Trait Implementations§
Source§impl Ord for CelKey
impl Ord for CelKey
Source§impl PartialOrd for CelKey
impl PartialOrd for CelKey
impl Eq for CelKey
impl StructuralPartialEq for CelKey
Auto Trait Implementations§
impl Freeze for CelKey
impl RefUnwindSafe for CelKey
impl Send for CelKey
impl Sync for CelKey
impl Unpin for CelKey
impl UnwindSafe for CelKey
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