pub enum Op {
Show 14 variants
Multiply,
Divide,
Modulo,
Gt,
Gte,
Lt,
Lte,
Eq,
Neq,
And,
Or,
Plus,
Minus,
Negation,
}Expand description
Op enum for Token parsing
We cannot divide ops into unary and binary because some ops are using the same symbols and we can’t know if it’s unary or binary until we parse the expression
Variants§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Op
impl<'de> Deserialize<'de> for Op
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Op
impl Eq for Op
impl StructuralPartialEq for Op
Auto Trait Implementations§
impl RefUnwindSafe for Op
impl Send for Op
impl Sync for Op
impl Unpin for Op
impl UnwindSafe for Op
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more