pub enum AssignmentPattern {
List(Box<AssignmentPatternList>),
Structure(Box<AssignmentPatternStructure>),
Array(Box<AssignmentPatternArray>),
Repeat(Box<AssignmentPatternRepeat>),
}Variants
List(Box<AssignmentPatternList>)
Structure(Box<AssignmentPatternStructure>)
Array(Box<AssignmentPatternArray>)
Repeat(Box<AssignmentPatternRepeat>)
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for AssignmentPattern
impl Send for AssignmentPattern
impl Sync for AssignmentPattern
impl Unpin for AssignmentPattern
impl UnwindSafe for AssignmentPattern
Blanket Implementations
Mutably borrows from an owned value. Read more