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