pub enum LogicExpr {
Value(BoolValue),
TextMatchExpr {
left: Box<TextExpr>,
op: MatchOp,
right: Box<TextExpr>,
},
Nested(Box<LogicExpr>),
Expr {
left: Box<LogicExpr>,
op: LogicOp,
right: Box<LogicExpr>,
},
}Variants§
Trait Implementations§
impl StructuralPartialEq for LogicExpr
Auto Trait Implementations§
impl Freeze for LogicExpr
impl RefUnwindSafe for LogicExpr
impl Send for LogicExpr
impl Sync for LogicExpr
impl Unpin for LogicExpr
impl UnwindSafe for LogicExpr
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