Enum moore_svlog::hir::GenKind [−][src]
pub enum GenKind {
If {
cond: NodeId,
main_body: ModuleBlock,
else_body: Option<ModuleBlock>,
},
For {
init: Vec<NodeId>,
cond: NodeId,
step: NodeId,
body: ModuleBlock,
},
}
Expand description
The different forms a generate statement can take.
Variants
An if-generate statement.
Fields of If
A for-generate statement.
Fields of For
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for GenKind
impl UnwindSafe for GenKind
Blanket Implementations
Mutably borrows from an owned value. Read more