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