pub struct BinExpr {
pub op: BinOp,
pub left: Box<Expr>,
pub right: Box<Expr>,
}
Fields§
§op: BinOp
§left: Box<Expr>
§right: Box<Expr>
Trait Implementations§
impl StructuralPartialEq for BinExpr
Auto Trait Implementations§
impl Freeze for BinExpr
impl RefUnwindSafe for BinExpr
impl Send for BinExpr
impl Sync for BinExpr
impl Unpin for BinExpr
impl UnwindSafe for BinExpr
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