pub struct InfixExpression {
pub left: ExpressionIdx,
pub op: InfixOperator,
pub right: ExpressionIdx,
}Fields§
§left: ExpressionIdx§op: InfixOperator§right: ExpressionIdxTrait Implementations§
Source§impl Clone for InfixExpression
impl Clone for InfixExpression
Source§fn clone(&self) -> InfixExpression
fn clone(&self) -> InfixExpression
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InfixExpression
impl Debug for InfixExpression
Source§impl FmtWithStore for InfixExpression
impl FmtWithStore for InfixExpression
fn fmt_with_store( &self, f: &mut Formatter<'_>, store: &ExpressionStore, ) -> Result
Source§impl PartialEq for InfixExpression
impl PartialEq for InfixExpression
Source§fn eq(&self, other: &InfixExpression) -> bool
fn eq(&self, other: &InfixExpression) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InfixExpression
Auto Trait Implementations§
impl Freeze for InfixExpression
impl RefUnwindSafe for InfixExpression
impl Send for InfixExpression
impl Sync for InfixExpression
impl Unpin for InfixExpression
impl UnsafeUnpin for InfixExpression
impl UnwindSafe for InfixExpression
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