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