Struct moore_svlog::ast::GenerateForData [−][src]
pub struct GenerateForData<'a> {
pub init: Node<'a, StmtData<'a>>,
pub cond: Node<'a, ExprData<'a>>,
pub step: Node<'a, ExprData<'a>>,
pub block: Node<'a, GenerateBlockData<'a>>,
}
Expand description
A for
generate statement.
Fields
init: Node<'a, StmtData<'a>>
cond: Node<'a, ExprData<'a>>
step: Node<'a, ExprData<'a>>
block: Node<'a, GenerateBlockData<'a>>
Trait Implementations
Get this node’s name, or None
if it does not have one.
Describe this node for diagnostics in indefinite form, e.g. “entity”. Read more
Describe this node for diagnostics in definite form, e.g. “entity ‘top’”. Read more
Describe this node for diagnostics in indefinite form, e.g. “entity”.
Describe this node for diagnostics in definite form, e.g. “entity ‘top’”. Read more
Describe this node for diagnostics in indefinite form, e.g. “entity”.
Describe this node for diagnostics in definite form, e.g. “entity ‘top’”. Read more
Apply a function to each child node.
Apply a function to this node.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for GenerateForData<'a>
impl<'a> Send for GenerateForData<'a>
impl<'a> Sync for GenerateForData<'a>
impl<'a> Unpin for GenerateForData<'a>
impl<'a> !UnwindSafe for GenerateForData<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more