pub struct Infix<'tree> {
pub span: Span,
pub left_operand: InfixLeftOperand<'tree>,
pub operator: Vec<InfixOperator<'tree>>,
pub right_operand: InfixRightOperand<'tree>,
}Fields§
§span: Span§left_operand: InfixLeftOperand<'tree>§operator: Vec<InfixOperator<'tree>>§right_operand: InfixRightOperand<'tree>Trait Implementations§
impl<'tree> Eq for Infix<'tree>
impl<'tree> StructuralPartialEq for Infix<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for Infix<'tree>
impl<'tree> RefUnwindSafe for Infix<'tree>
impl<'tree> Send for Infix<'tree>
impl<'tree> Sync for Infix<'tree>
impl<'tree> Unpin for Infix<'tree>
impl<'tree> UnsafeUnpin for Infix<'tree>
impl<'tree> UnwindSafe for Infix<'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