pub enum ArrayPatternKey {
    ConstantExpression(Box<ConstantExpression>),
    AssignmentPatternKey(Box<AssignmentPatternKey>),
}Variants§
ConstantExpression(Box<ConstantExpression>)
AssignmentPatternKey(Box<AssignmentPatternKey>)
Trait Implementations§
Source§impl Clone for ArrayPatternKey
 
impl Clone for ArrayPatternKey
Source§fn clone(&self) -> ArrayPatternKey
 
fn clone(&self) -> ArrayPatternKey
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 ArrayPatternKey
 
impl Debug for ArrayPatternKey
Source§impl<'a> From<&'a ArrayPatternKey> for RefNode<'a>
 
impl<'a> From<&'a ArrayPatternKey> for RefNode<'a>
Source§fn from(x: &'a ArrayPatternKey) -> Self
 
fn from(x: &'a ArrayPatternKey) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a ArrayPatternKey> for RefNodes<'a>
 
impl<'a> From<&'a ArrayPatternKey> for RefNodes<'a>
Source§fn from(x: &'a ArrayPatternKey) -> Self
 
fn from(x: &'a ArrayPatternKey) -> Self
Converts to this type from the input type.
Source§impl From<ArrayPatternKey> for AnyNode
 
impl From<ArrayPatternKey> for AnyNode
Source§fn from(x: ArrayPatternKey) -> Self
 
fn from(x: ArrayPatternKey) -> Self
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ArrayPatternKey
 
impl<'a> IntoIterator for &'a ArrayPatternKey
Source§impl PartialEq for ArrayPatternKey
 
impl PartialEq for ArrayPatternKey
Source§impl<'a> TryFrom<&'a ArrayPatternKey> for Locate
 
impl<'a> TryFrom<&'a ArrayPatternKey> for Locate
Source§impl TryFrom<AnyNode> for ArrayPatternKey
 
impl TryFrom<AnyNode> for ArrayPatternKey
Source§impl TryFrom<ArrayPatternKey> for Locate
 
impl TryFrom<ArrayPatternKey> for Locate
impl StructuralPartialEq for ArrayPatternKey
Auto Trait Implementations§
impl Freeze for ArrayPatternKey
impl RefUnwindSafe for ArrayPatternKey
impl Send for ArrayPatternKey
impl Sync for ArrayPatternKey
impl Unpin for ArrayPatternKey
impl UnwindSafe for ArrayPatternKey
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