pub enum StatementItem {
Show 20 variants
    BlockingAssignment(Box<(BlockingAssignment, Symbol)>),
    NonblockingAssignment(Box<(NonblockingAssignment, Symbol)>),
    ProceduralContinuousAssignment(Box<(ProceduralContinuousAssignment, Symbol)>),
    CaseStatement(Box<CaseStatement>),
    ConditionalStatement(Box<ConditionalStatement>),
    IncOrDecExpression(Box<(IncOrDecExpression, Symbol)>),
    SubroutineCallStatement(Box<SubroutineCallStatement>),
    DisableStatement(Box<DisableStatement>),
    EventTrigger(Box<EventTrigger>),
    LoopStatement(Box<LoopStatement>),
    JumpStatement(Box<JumpStatement>),
    ParBlock(Box<ParBlock>),
    ProceduralTimingControlStatement(Box<ProceduralTimingControlStatement>),
    SeqBlock(Box<SeqBlock>),
    WaitStatement(Box<WaitStatement>),
    ProceduralAssertionStatement(Box<ProceduralAssertionStatement>),
    ClockingDrive(Box<(ClockingDrive, Symbol)>),
    RandsequenceStatement(Box<RandsequenceStatement>),
    RandcaseStatement(Box<RandcaseStatement>),
    ExpectPropertyStatement(Box<ExpectPropertyStatement>),
}Variants§
BlockingAssignment(Box<(BlockingAssignment, Symbol)>)
NonblockingAssignment(Box<(NonblockingAssignment, Symbol)>)
ProceduralContinuousAssignment(Box<(ProceduralContinuousAssignment, Symbol)>)
CaseStatement(Box<CaseStatement>)
ConditionalStatement(Box<ConditionalStatement>)
IncOrDecExpression(Box<(IncOrDecExpression, Symbol)>)
SubroutineCallStatement(Box<SubroutineCallStatement>)
DisableStatement(Box<DisableStatement>)
EventTrigger(Box<EventTrigger>)
LoopStatement(Box<LoopStatement>)
JumpStatement(Box<JumpStatement>)
ParBlock(Box<ParBlock>)
ProceduralTimingControlStatement(Box<ProceduralTimingControlStatement>)
SeqBlock(Box<SeqBlock>)
WaitStatement(Box<WaitStatement>)
ProceduralAssertionStatement(Box<ProceduralAssertionStatement>)
ClockingDrive(Box<(ClockingDrive, Symbol)>)
RandsequenceStatement(Box<RandsequenceStatement>)
RandcaseStatement(Box<RandcaseStatement>)
ExpectPropertyStatement(Box<ExpectPropertyStatement>)
Trait Implementations§
Source§impl Clone for StatementItem
 
impl Clone for StatementItem
Source§fn clone(&self) -> StatementItem
 
fn clone(&self) -> StatementItem
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 StatementItem
 
impl Debug for StatementItem
Source§impl<'a> From<&'a StatementItem> for RefNode<'a>
 
impl<'a> From<&'a StatementItem> for RefNode<'a>
Source§fn from(x: &'a StatementItem) -> RefNode<'a>
 
fn from(x: &'a StatementItem) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a StatementItem> for RefNodes<'a>
 
impl<'a> From<&'a StatementItem> for RefNodes<'a>
Source§fn from(x: &'a StatementItem) -> RefNodes<'a>
 
fn from(x: &'a StatementItem) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<StatementItem> for AnyNode
 
impl From<StatementItem> for AnyNode
Source§fn from(x: StatementItem) -> AnyNode
 
fn from(x: StatementItem) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a StatementItem
 
impl<'a> IntoIterator for &'a StatementItem
Source§impl PartialEq for StatementItem
 
impl PartialEq for StatementItem
Source§impl<'a> TryFrom<&'a StatementItem> for Locate
 
impl<'a> TryFrom<&'a StatementItem> for Locate
Source§impl TryFrom<AnyNode> for StatementItem
 
impl TryFrom<AnyNode> for StatementItem
Source§impl TryFrom<StatementItem> for Locate
 
impl TryFrom<StatementItem> for Locate
impl StructuralPartialEq for StatementItem
Auto Trait Implementations§
impl Freeze for StatementItem
impl RefUnwindSafe for StatementItem
impl Send for StatementItem
impl Sync for StatementItem
impl Unpin for StatementItem
impl UnwindSafe for StatementItem
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