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