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