pub struct OperatorExpression {
pub lhs: SpannedItem<Expression>,
pub rhs: SpannedItem<Expression>,
pub op: SpannedItem<Operator>,
}
Fields§
§lhs: SpannedItem<Expression>
§rhs: SpannedItem<Expression>
§op: SpannedItem<Operator>
Trait Implementations§
Source§impl Clone for OperatorExpression
impl Clone for OperatorExpression
Source§fn clone(&self) -> OperatorExpression
fn clone(&self) -> OperatorExpression
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 PrettyPrint for OperatorExpression
impl PrettyPrint for OperatorExpression
fn pretty_print(&self, interner: &SymbolInterner, indentation: usize) -> String
Auto Trait Implementations§
impl Freeze for OperatorExpression
impl RefUnwindSafe for OperatorExpression
impl !Send for OperatorExpression
impl !Sync for OperatorExpression
impl Unpin for OperatorExpression
impl UnwindSafe for OperatorExpression
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