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