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