pub enum ArrayPatternKey {
ConstantExpression(Box<ConstantExpression>),
AssignmentPatternKey(Box<AssignmentPatternKey>),
}Variants
ConstantExpression(Box<ConstantExpression>)
AssignmentPatternKey(Box<AssignmentPatternKey>)
Trait Implementations
sourceimpl Clone for ArrayPatternKey
impl Clone for ArrayPatternKey
sourcefn clone(&self) -> ArrayPatternKey
fn clone(&self) -> ArrayPatternKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ArrayPatternKey
impl Debug for ArrayPatternKey
sourceimpl<'a> From<&'a ArrayPatternKey> for RefNodes<'a>
impl<'a> From<&'a ArrayPatternKey> for RefNodes<'a>
sourcefn from(x: &'a ArrayPatternKey) -> Self
fn from(x: &'a ArrayPatternKey) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ArrayPatternKey> for RefNode<'a>
impl<'a> From<&'a ArrayPatternKey> for RefNode<'a>
sourcefn from(x: &'a ArrayPatternKey) -> Self
fn from(x: &'a ArrayPatternKey) -> Self
Converts to this type from the input type.
sourceimpl From<ArrayPatternKey> for AnyNode
impl From<ArrayPatternKey> for AnyNode
sourcefn from(x: ArrayPatternKey) -> Self
fn from(x: ArrayPatternKey) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ArrayPatternKey
impl<'a> IntoIterator for &'a ArrayPatternKey
sourceimpl PartialEq<ArrayPatternKey> for ArrayPatternKey
impl PartialEq<ArrayPatternKey> for ArrayPatternKey
sourcefn eq(&self, other: &ArrayPatternKey) -> bool
fn eq(&self, other: &ArrayPatternKey) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ArrayPatternKey) -> bool
fn ne(&self, other: &ArrayPatternKey) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ArrayPatternKey> for Locate
impl<'a> TryFrom<&'a ArrayPatternKey> for Locate
sourceimpl TryFrom<AnyNode> for ArrayPatternKey
impl TryFrom<AnyNode> for ArrayPatternKey
sourceimpl TryFrom<ArrayPatternKey> for Locate
impl TryFrom<ArrayPatternKey> for Locate
impl StructuralPartialEq for ArrayPatternKey
Auto Trait Implementations
impl RefUnwindSafe for ArrayPatternKey
impl Send for ArrayPatternKey
impl Sync for ArrayPatternKey
impl Unpin for ArrayPatternKey
impl UnwindSafe for ArrayPatternKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more