Enum moore_svlog::hir::LoopKind [−][src]
pub enum LoopKind {
Forever,
Repeat(NodeId),
While(NodeId),
Do(NodeId),
For(NodeId, NodeId, NodeId),
}
Expand description
The different forms a loop can take.
Variants
A forever
loop.
Repeat(NodeId)
A repeat (<count>)
loop.
Tuple Fields of Repeat
0: NodeId
While(NodeId)
Tuple Fields of While
0: NodeId
Do(NodeId)
Tuple Fields of Do
0: NodeId
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LoopKind
impl UnwindSafe for LoopKind
Blanket Implementations
Mutably borrows from an owned value. Read more