Struct moore_vhdl::hir::NexitStmt [] [src]

pub struct NexitStmt {
    pub mode: NexitMode,
    pub target: Option<Spanned<LoopStmtRef>>,
    pub cond: Option<ExprRef>,
}

A next or exit statement.

See IEEE 1076-2008 section 10.11 and 10.12.

Fields

Whether this is a next or exit statement.

The optional loop the statement operates on. If omitted the statement applies to the innermost loop.

The optional condition.

Trait Implementations

impl Debug for NexitStmt
[src]

[src]

Formats the value using the given formatter.