pub struct OperatorAssignment {
    pub nodes: (VariableLvalue, AssignmentOperator, Expression),
}Fields§
§nodes: (VariableLvalue, AssignmentOperator, Expression)Trait Implementations§
Source§impl Clone for OperatorAssignment
 
impl Clone for OperatorAssignment
Source§fn clone(&self) -> OperatorAssignment
 
fn clone(&self) -> OperatorAssignment
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 Debug for OperatorAssignment
 
impl Debug for OperatorAssignment
Source§impl<'a> From<&'a OperatorAssignment> for RefNode<'a>
 
impl<'a> From<&'a OperatorAssignment> for RefNode<'a>
Source§fn from(x: &'a OperatorAssignment) -> RefNode<'a>
 
fn from(x: &'a OperatorAssignment) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a OperatorAssignment> for RefNodes<'a>
 
impl<'a> From<&'a OperatorAssignment> for RefNodes<'a>
Source§fn from(x: &'a OperatorAssignment) -> RefNodes<'a>
 
fn from(x: &'a OperatorAssignment) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<OperatorAssignment> for AnyNode
 
impl From<OperatorAssignment> for AnyNode
Source§fn from(x: OperatorAssignment) -> AnyNode
 
fn from(x: OperatorAssignment) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a OperatorAssignment
 
impl<'a> IntoIterator for &'a OperatorAssignment
Source§impl PartialEq for OperatorAssignment
 
impl PartialEq for OperatorAssignment
Source§impl<'a> TryFrom<&'a OperatorAssignment> for Locate
 
impl<'a> TryFrom<&'a OperatorAssignment> for Locate
Source§impl TryFrom<AnyNode> for OperatorAssignment
 
impl TryFrom<AnyNode> for OperatorAssignment
Source§impl TryFrom<OperatorAssignment> for Locate
 
impl TryFrom<OperatorAssignment> for Locate
impl StructuralPartialEq for OperatorAssignment
Auto Trait Implementations§
impl Freeze for OperatorAssignment
impl RefUnwindSafe for OperatorAssignment
impl Send for OperatorAssignment
impl Sync for OperatorAssignment
impl Unpin for OperatorAssignment
impl UnwindSafe for OperatorAssignment
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