pub enum ProgramGenerateItem {
LoopGenerateConstruct(Box<LoopGenerateConstruct>),
ConditionalGenerateConstruct(Box<ConditionalGenerateConstruct>),
GenerateRegion(Box<GenerateRegion>),
ElaborationSystemTask(Box<ElaborationSystemTask>),
}Variants§
LoopGenerateConstruct(Box<LoopGenerateConstruct>)
ConditionalGenerateConstruct(Box<ConditionalGenerateConstruct>)
GenerateRegion(Box<GenerateRegion>)
ElaborationSystemTask(Box<ElaborationSystemTask>)
Trait Implementations§
source§impl Clone for ProgramGenerateItem
impl Clone for ProgramGenerateItem
source§fn clone(&self) -> ProgramGenerateItem
fn clone(&self) -> ProgramGenerateItem
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 ProgramGenerateItem
impl Debug for ProgramGenerateItem
source§impl<'a> From<&'a ProgramGenerateItem> for RefNode<'a>
impl<'a> From<&'a ProgramGenerateItem> for RefNode<'a>
source§fn from(x: &'a ProgramGenerateItem) -> Self
fn from(x: &'a ProgramGenerateItem) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a ProgramGenerateItem> for RefNodes<'a>
impl<'a> From<&'a ProgramGenerateItem> for RefNodes<'a>
source§fn from(x: &'a ProgramGenerateItem) -> Self
fn from(x: &'a ProgramGenerateItem) -> Self
Converts to this type from the input type.
source§impl From<ProgramGenerateItem> for AnyNode
impl From<ProgramGenerateItem> for AnyNode
source§fn from(x: ProgramGenerateItem) -> Self
fn from(x: ProgramGenerateItem) -> Self
Converts to this type from the input type.
source§impl<'a> IntoIterator for &'a ProgramGenerateItem
impl<'a> IntoIterator for &'a ProgramGenerateItem
source§impl PartialEq<ProgramGenerateItem> for ProgramGenerateItem
impl PartialEq<ProgramGenerateItem> for ProgramGenerateItem
source§fn eq(&self, other: &ProgramGenerateItem) -> bool
fn eq(&self, other: &ProgramGenerateItem) -> bool
This method tests for
self and other values to be equal, and is used
by ==.