pub enum Op {
And,
Or,
Equals,
O(String),
}Expand description
The Op enum is used to specify the operator in a condition. It is used in the Term struct.
The Op::O variant is an escape hatch to allow you to use any operator you want.
Variants§
Trait Implementations§
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