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
sourceimpl Clone for ProgramGenerateItem
impl Clone for ProgramGenerateItem
sourcefn clone(&self) -> ProgramGenerateItem
fn clone(&self) -> ProgramGenerateItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ProgramGenerateItem
impl Debug for ProgramGenerateItem
sourceimpl<'a> From<&'a ProgramGenerateItem> for RefNodes<'a>
impl<'a> From<&'a ProgramGenerateItem> for RefNodes<'a>
sourcefn from(x: &'a ProgramGenerateItem) -> Self
fn from(x: &'a ProgramGenerateItem) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ProgramGenerateItem> for RefNode<'a>
impl<'a> From<&'a ProgramGenerateItem> for RefNode<'a>
sourcefn from(x: &'a ProgramGenerateItem) -> Self
fn from(x: &'a ProgramGenerateItem) -> Self
Converts to this type from the input type.
sourceimpl From<ProgramGenerateItem> for AnyNode
impl From<ProgramGenerateItem> for AnyNode
sourcefn from(x: ProgramGenerateItem) -> Self
fn from(x: ProgramGenerateItem) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ProgramGenerateItem
impl<'a> IntoIterator for &'a ProgramGenerateItem
sourceimpl PartialEq<ProgramGenerateItem> for ProgramGenerateItem
impl PartialEq<ProgramGenerateItem> for ProgramGenerateItem
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &ProgramGenerateItem) -> bool
fn ne(&self, other: &ProgramGenerateItem) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ProgramGenerateItem> for Locate
impl<'a> TryFrom<&'a ProgramGenerateItem> for Locate
sourceimpl TryFrom<AnyNode> for ProgramGenerateItem
impl TryFrom<AnyNode> for ProgramGenerateItem
sourceimpl TryFrom<ProgramGenerateItem> for Locate
impl TryFrom<ProgramGenerateItem> for Locate
impl StructuralPartialEq for ProgramGenerateItem
Auto Trait Implementations
impl RefUnwindSafe for ProgramGenerateItem
impl Send for ProgramGenerateItem
impl Sync for ProgramGenerateItem
impl Unpin for ProgramGenerateItem
impl UnwindSafe for ProgramGenerateItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more