pub struct BinOp {
pub op: Token,
pub args: [Box<Expr>; 2],
}
Fields§
§op: Token
§args: [Box<Expr>; 2]
Implementations§
Trait Implementations§
Source§impl Locational for BinOp
impl Locational for BinOp
Source§impl NestedDisplay for BinOp
impl NestedDisplay for BinOp
Source§impl Traversable for BinOp
impl Traversable for BinOp
impl Eq for BinOp
impl StructuralPartialEq for BinOp
Auto Trait Implementations§
impl Freeze for BinOp
impl RefUnwindSafe for BinOp
impl Send for BinOp
impl Sync for BinOp
impl Unpin for BinOp
impl UnwindSafe for BinOp
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