pub enum StructurePatternKey {
MemberIdentifier(Box<MemberIdentifier>),
AssignmentPatternKey(Box<AssignmentPatternKey>),
}Variants
MemberIdentifier(Box<MemberIdentifier>)
AssignmentPatternKey(Box<AssignmentPatternKey>)
Trait Implementations
sourceimpl Clone for StructurePatternKey
impl Clone for StructurePatternKey
sourcefn clone(&self) -> StructurePatternKey
fn clone(&self) -> StructurePatternKey
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 StructurePatternKey
impl Debug for StructurePatternKey
sourceimpl<'a> From<&'a StructurePatternKey> for RefNode<'a>
impl<'a> From<&'a StructurePatternKey> for RefNode<'a>
sourcefn from(x: &'a StructurePatternKey) -> Self
fn from(x: &'a StructurePatternKey) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a StructurePatternKey> for RefNodes<'a>
impl<'a> From<&'a StructurePatternKey> for RefNodes<'a>
sourcefn from(x: &'a StructurePatternKey) -> Self
fn from(x: &'a StructurePatternKey) -> Self
Converts to this type from the input type.
sourceimpl From<StructurePatternKey> for AnyNode
impl From<StructurePatternKey> for AnyNode
sourcefn from(x: StructurePatternKey) -> Self
fn from(x: StructurePatternKey) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a StructurePatternKey
impl<'a> IntoIterator for &'a StructurePatternKey
sourceimpl PartialEq<StructurePatternKey> for StructurePatternKey
impl PartialEq<StructurePatternKey> for StructurePatternKey
sourcefn eq(&self, other: &StructurePatternKey) -> bool
fn eq(&self, other: &StructurePatternKey) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &StructurePatternKey) -> bool
fn ne(&self, other: &StructurePatternKey) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a StructurePatternKey> for Locate
impl<'a> TryFrom<&'a StructurePatternKey> for Locate
sourceimpl TryFrom<AnyNode> for StructurePatternKey
impl TryFrom<AnyNode> for StructurePatternKey
sourceimpl TryFrom<StructurePatternKey> for Locate
impl TryFrom<StructurePatternKey> for Locate
impl StructuralPartialEq for StructurePatternKey
Auto Trait Implementations
impl RefUnwindSafe for StructurePatternKey
impl Send for StructurePatternKey
impl Sync for StructurePatternKey
impl Unpin for StructurePatternKey
impl UnwindSafe for StructurePatternKey
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