pub struct Binary<'tree> {
pub span: Span,
pub left: BinaryLeft<'tree>,
pub operator: BinaryOperator,
pub right: Expression<'tree>,
}Fields§
§span: Span§left: BinaryLeft<'tree>§operator: BinaryOperator§right: Expression<'tree>Trait Implementations§
impl<'tree> Eq for Binary<'tree>
impl<'tree> StructuralPartialEq for Binary<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for Binary<'tree>
impl<'tree> RefUnwindSafe for Binary<'tree>
impl<'tree> Send for Binary<'tree>
impl<'tree> Sync for Binary<'tree>
impl<'tree> Unpin for Binary<'tree>
impl<'tree> UnsafeUnpin for Binary<'tree>
impl<'tree> UnwindSafe for Binary<'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