pub enum ConditionalGenerateConstruct {
    If(Box<IfGenerateConstruct>),
    Case(Box<CaseGenerateConstruct>),
}Variants§
If(Box<IfGenerateConstruct>)
Case(Box<CaseGenerateConstruct>)
Trait Implementations§
Source§impl Clone for ConditionalGenerateConstruct
 
impl Clone for ConditionalGenerateConstruct
Source§fn clone(&self) -> ConditionalGenerateConstruct
 
fn clone(&self) -> ConditionalGenerateConstruct
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 ConditionalGenerateConstruct
 
impl Debug for ConditionalGenerateConstruct
Source§impl<'a> From<&'a ConditionalGenerateConstruct> for RefNode<'a>
 
impl<'a> From<&'a ConditionalGenerateConstruct> for RefNode<'a>
Source§fn from(x: &'a ConditionalGenerateConstruct) -> RefNode<'a>
 
fn from(x: &'a ConditionalGenerateConstruct) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ConditionalGenerateConstruct> for RefNodes<'a>
 
impl<'a> From<&'a ConditionalGenerateConstruct> for RefNodes<'a>
Source§fn from(x: &'a ConditionalGenerateConstruct) -> RefNodes<'a>
 
fn from(x: &'a ConditionalGenerateConstruct) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ConditionalGenerateConstruct> for AnyNode
 
impl From<ConditionalGenerateConstruct> for AnyNode
Source§fn from(x: ConditionalGenerateConstruct) -> AnyNode
 
fn from(x: ConditionalGenerateConstruct) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ConditionalGenerateConstruct
 
impl<'a> IntoIterator for &'a ConditionalGenerateConstruct
Source§impl PartialEq for ConditionalGenerateConstruct
 
impl PartialEq for ConditionalGenerateConstruct
Source§fn eq(&self, other: &ConditionalGenerateConstruct) -> bool
 
fn eq(&self, other: &ConditionalGenerateConstruct) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a ConditionalGenerateConstruct> for Locate
 
impl<'a> TryFrom<&'a ConditionalGenerateConstruct> for Locate
Source§impl TryFrom<ConditionalGenerateConstruct> for Locate
 
impl TryFrom<ConditionalGenerateConstruct> for Locate
impl StructuralPartialEq for ConditionalGenerateConstruct
Auto Trait Implementations§
impl Freeze for ConditionalGenerateConstruct
impl RefUnwindSafe for ConditionalGenerateConstruct
impl Send for ConditionalGenerateConstruct
impl Sync for ConditionalGenerateConstruct
impl Unpin for ConditionalGenerateConstruct
impl UnwindSafe for ConditionalGenerateConstruct
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