pub struct BinaryOperator<'tree> {
pub span: Span,
pub left: PrimaryExpression<'tree>,
pub operator: BinaryOperatorOperator,
pub right: PrimaryExpression<'tree>,
}Fields§
§span: Span§left: PrimaryExpression<'tree>§operator: BinaryOperatorOperator§right: PrimaryExpression<'tree>Trait Implementations§
Source§impl<'tree> Clone for BinaryOperator<'tree>
impl<'tree> Clone for BinaryOperator<'tree>
Source§fn clone(&self) -> BinaryOperator<'tree>
fn clone(&self) -> BinaryOperator<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for BinaryOperator<'tree>
impl<'tree> Debug for BinaryOperator<'tree>
Source§impl<'tree> FromNode<'tree> for BinaryOperator<'tree>
impl<'tree> FromNode<'tree> for BinaryOperator<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for BinaryOperator<'tree>
impl<'tree> RefUnwindSafe for BinaryOperator<'tree>
impl<'tree> Send for BinaryOperator<'tree>
impl<'tree> Sync for BinaryOperator<'tree>
impl<'tree> Unpin for BinaryOperator<'tree>
impl<'tree> UnsafeUnpin for BinaryOperator<'tree>
impl<'tree> UnwindSafe for BinaryOperator<'tree>
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