pub enum ArrayMethodName<'a> {
Method(Box<MethodIdentifier<'a>>),
Unique(Box<Metadata<'a>>),
And(Box<Metadata<'a>>),
Or(Box<Metadata<'a>>),
Xor(Box<Metadata<'a>>),
}Variants§
Method(Box<MethodIdentifier<'a>>)
Unique(Box<Metadata<'a>>)
And(Box<Metadata<'a>>)
Or(Box<Metadata<'a>>)
Xor(Box<Metadata<'a>>)
Implementations§
Source§impl<'a: 'b, 'b> ArrayMethodName<'a>
impl<'a: 'b, 'b> ArrayMethodName<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the ArrayMethodName and its children
Trait Implementations§
Source§impl<'a> Clone for ArrayMethodName<'a>
impl<'a> Clone for ArrayMethodName<'a>
Source§fn clone(&self) -> ArrayMethodName<'a>
fn clone(&self) -> ArrayMethodName<'a>
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<'a> Debug for ArrayMethodName<'a>
impl<'a> Debug for ArrayMethodName<'a>
Source§impl<'a: 'b, 'b> From<&'b ArrayMethodName<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b ArrayMethodName<'a>> for Node<'a, 'b>
Source§fn from(value: &'b ArrayMethodName<'a>) -> Self
fn from(value: &'b ArrayMethodName<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b ArrayMethodName<'a>
impl<'a: 'b, 'b> IntoIterator for &'b ArrayMethodName<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for ArrayMethodName<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for ArrayMethodName<'a>
Source§impl<'a> PartialEq for ArrayMethodName<'a>
impl<'a> PartialEq for ArrayMethodName<'a>
impl<'a> StructuralPartialEq for ArrayMethodName<'a>
Auto Trait Implementations§
impl<'a> Freeze for ArrayMethodName<'a>
impl<'a> RefUnwindSafe for ArrayMethodName<'a>
impl<'a> Send for ArrayMethodName<'a>
impl<'a> Sync for ArrayMethodName<'a>
impl<'a> Unpin for ArrayMethodName<'a>
impl<'a> UnsafeUnpin for ArrayMethodName<'a>
impl<'a> UnwindSafe for ArrayMethodName<'a>
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