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