pub struct BinaryOperator {
pub left: Box<Expression>,
pub right: Box<Expression>,
pub kind: BinaryOperatorKind,
pub node: Node,
}
Fields§
§left: Box<Expression>
§right: Box<Expression>
§kind: BinaryOperatorKind
§node: Node
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinaryOperator
impl !RefUnwindSafe for BinaryOperator
impl !Send for BinaryOperator
impl !Sync for BinaryOperator
impl Unpin for BinaryOperator
impl !UnwindSafe for BinaryOperator
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