pub enum BuiltInMethodCall<'a> {
ArrayManip(Box<ArrayManipulationCall<'a>>),
Randomize(Box<RandomizeCall<'a>>),
}Variants§
ArrayManip(Box<ArrayManipulationCall<'a>>)
Randomize(Box<RandomizeCall<'a>>)
Implementations§
Source§impl<'a: 'b, 'b> BuiltInMethodCall<'a>
impl<'a: 'b, 'b> BuiltInMethodCall<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the BuiltInMethodCall and its children
Trait Implementations§
Source§impl<'a> Clone for BuiltInMethodCall<'a>
impl<'a> Clone for BuiltInMethodCall<'a>
Source§fn clone(&self) -> BuiltInMethodCall<'a>
fn clone(&self) -> BuiltInMethodCall<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BuiltInMethodCall<'a>
impl<'a> Debug for BuiltInMethodCall<'a>
Source§impl<'a: 'b, 'b> From<&'b BuiltInMethodCall<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b BuiltInMethodCall<'a>> for Node<'a, 'b>
Source§fn from(value: &'b BuiltInMethodCall<'a>) -> Self
fn from(value: &'b BuiltInMethodCall<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b BuiltInMethodCall<'a>
impl<'a: 'b, 'b> IntoIterator for &'b BuiltInMethodCall<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for BuiltInMethodCall<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for BuiltInMethodCall<'a>
Source§impl<'a> PartialEq for BuiltInMethodCall<'a>
impl<'a> PartialEq for BuiltInMethodCall<'a>
Source§fn eq(&self, other: &BuiltInMethodCall<'a>) -> bool
fn eq(&self, other: &BuiltInMethodCall<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for BuiltInMethodCall<'a>
Auto Trait Implementations§
impl<'a> Freeze for BuiltInMethodCall<'a>
impl<'a> RefUnwindSafe for BuiltInMethodCall<'a>
impl<'a> Send for BuiltInMethodCall<'a>
impl<'a> Sync for BuiltInMethodCall<'a>
impl<'a> Unpin for BuiltInMethodCall<'a>
impl<'a> UnsafeUnpin for BuiltInMethodCall<'a>
impl<'a> UnwindSafe for BuiltInMethodCall<'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