pub enum DoGuard {
Infinite,
PreUntil(Expr),
PreWhile(Expr),
PostUntil(Expr),
PostWhile(Expr),
}Expand description
Type of the DO loop.
Variants§
Infinite
Represents an infinite loop without guards.
PreUntil(Expr)
Represents a loop with an UNTIL guard in the DO clause.
PreWhile(Expr)
Represents a loop with a WHILE guard in the DO clause.
PostUntil(Expr)
Represents a loop with an UNTIL guard in the LOOP clause.
PostWhile(Expr)
Represents a loop with a WHILE guard in the LOOP clause.