pub struct VariableDeclAssignmentVariable {
    pub nodes: (VariableIdentifier, Vec<VariableDimension>, Option<(Symbol, Expression)>),
}Fields§
§nodes: (VariableIdentifier, Vec<VariableDimension>, Option<(Symbol, Expression)>)Trait Implementations§
Source§impl Clone for VariableDeclAssignmentVariable
 
impl Clone for VariableDeclAssignmentVariable
Source§fn clone(&self) -> VariableDeclAssignmentVariable
 
fn clone(&self) -> VariableDeclAssignmentVariable
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<'a> From<&'a VariableDeclAssignmentVariable> for RefNode<'a>
 
impl<'a> From<&'a VariableDeclAssignmentVariable> for RefNode<'a>
Source§fn from(x: &'a VariableDeclAssignmentVariable) -> Self
 
fn from(x: &'a VariableDeclAssignmentVariable) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a VariableDeclAssignmentVariable> for RefNodes<'a>
 
impl<'a> From<&'a VariableDeclAssignmentVariable> for RefNodes<'a>
Source§fn from(x: &'a VariableDeclAssignmentVariable) -> Self
 
fn from(x: &'a VariableDeclAssignmentVariable) -> Self
Converts to this type from the input type.
Source§impl From<VariableDeclAssignmentVariable> for AnyNode
 
impl From<VariableDeclAssignmentVariable> for AnyNode
Source§fn from(x: VariableDeclAssignmentVariable) -> Self
 
fn from(x: VariableDeclAssignmentVariable) -> Self
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a VariableDeclAssignmentVariable
 
impl<'a> IntoIterator for &'a VariableDeclAssignmentVariable
Source§impl PartialEq for VariableDeclAssignmentVariable
 
impl PartialEq for VariableDeclAssignmentVariable
Source§fn eq(&self, other: &VariableDeclAssignmentVariable) -> bool
 
fn eq(&self, other: &VariableDeclAssignmentVariable) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a VariableDeclAssignmentVariable> for Locate
 
impl<'a> TryFrom<&'a VariableDeclAssignmentVariable> for Locate
impl StructuralPartialEq for VariableDeclAssignmentVariable
Auto Trait Implementations§
impl Freeze for VariableDeclAssignmentVariable
impl RefUnwindSafe for VariableDeclAssignmentVariable
impl Send for VariableDeclAssignmentVariable
impl Sync for VariableDeclAssignmentVariable
impl Unpin for VariableDeclAssignmentVariable
impl UnwindSafe for VariableDeclAssignmentVariable
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