Enum brush_parser::ast::AssignmentName  
source · pub enum AssignmentName {
    VariableName(String),
    ArrayElementName(String, String),
}Expand description
The target of an assignment.
Variants§
VariableName(String)
A named variable.
ArrayElementName(String, String)
An element in a named array.
Trait Implementations§
source§impl Clone for AssignmentName
 
impl Clone for AssignmentName
source§fn clone(&self) -> AssignmentName
 
fn clone(&self) -> AssignmentName
Returns a copy 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 AssignmentName
 
impl Debug for AssignmentName
Auto Trait Implementations§
impl Freeze for AssignmentName
impl RefUnwindSafe for AssignmentName
impl Send for AssignmentName
impl Sync for AssignmentName
impl Unpin for AssignmentName
impl UnwindSafe for AssignmentName
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