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