pub enum AssignmentPatternExpressionType {
    PsTypeIdentifier(Box<PsTypeIdentifier>),
    PsParameterIdentifier(Box<PsParameterIdentifier>),
    IntegerAtomType(Box<IntegerAtomType>),
    TypeReference(Box<TypeReference>),
}Variants§
PsTypeIdentifier(Box<PsTypeIdentifier>)
PsParameterIdentifier(Box<PsParameterIdentifier>)
IntegerAtomType(Box<IntegerAtomType>)
TypeReference(Box<TypeReference>)
Trait Implementations§
Source§impl Clone for AssignmentPatternExpressionType
 
impl Clone for AssignmentPatternExpressionType
Source§fn clone(&self) -> AssignmentPatternExpressionType
 
fn clone(&self) -> AssignmentPatternExpressionType
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 AssignmentPatternExpressionType> for RefNode<'a>
 
impl<'a> From<&'a AssignmentPatternExpressionType> for RefNode<'a>
Source§fn from(x: &'a AssignmentPatternExpressionType) -> RefNode<'a>
 
fn from(x: &'a AssignmentPatternExpressionType) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a AssignmentPatternExpressionType> for RefNodes<'a>
 
impl<'a> From<&'a AssignmentPatternExpressionType> for RefNodes<'a>
Source§fn from(x: &'a AssignmentPatternExpressionType) -> RefNodes<'a>
 
fn from(x: &'a AssignmentPatternExpressionType) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<AssignmentPatternExpressionType> for AnyNode
 
impl From<AssignmentPatternExpressionType> for AnyNode
Source§fn from(x: AssignmentPatternExpressionType) -> AnyNode
 
fn from(x: AssignmentPatternExpressionType) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a AssignmentPatternExpressionType
 
impl<'a> IntoIterator for &'a AssignmentPatternExpressionType
Source§impl<'a> Node<'a> for AssignmentPatternExpressionType
 
impl<'a> Node<'a> for AssignmentPatternExpressionType
Source§impl PartialEq for AssignmentPatternExpressionType
 
impl PartialEq for AssignmentPatternExpressionType
Source§fn eq(&self, other: &AssignmentPatternExpressionType) -> bool
 
fn eq(&self, other: &AssignmentPatternExpressionType) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a AssignmentPatternExpressionType> for Locate
 
impl<'a> TryFrom<&'a AssignmentPatternExpressionType> for Locate
impl StructuralPartialEq for AssignmentPatternExpressionType
Auto Trait Implementations§
impl Freeze for AssignmentPatternExpressionType
impl RefUnwindSafe for AssignmentPatternExpressionType
impl Send for AssignmentPatternExpressionType
impl Sync for AssignmentPatternExpressionType
impl Unpin for AssignmentPatternExpressionType
impl UnwindSafe for AssignmentPatternExpressionType
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