pub struct LogicExpr {
pub lhs: Box<Expr>,
pub rhs: Box<Expr>,
pub operator: LogicOperator,
}
Expand description
A logical expression
Fields§
§lhs: Box<Expr>
The left hand side of the expression
rhs: Box<Expr>
The right hand side of the expression
operator: LogicOperator
The operator used
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