Enum cala_cel_interpreter::CelKey
source · 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 PartialEq for CelKey
impl PartialEq for CelKey
source§impl PartialOrd for CelKey
impl PartialOrd for CelKey
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl 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