pub struct ProcessStmt {
    pub parent: ScopeRef,
    pub label: Option<Spanned<Name>>,
    pub postponed: bool,
    pub sensitivity: ProcessSensitivity,
    pub decls: Vec<DeclInProcRef>,
    pub stmts: Vec<SeqStmtRef>,
}
Expand description

A process statement.

See IEEE 1076-2008 section 11.3.

Fields

parent: ScopeRef

The scope within which the process is declared.

label: Option<Spanned<Name>>

The optional process label.

postponed: bool

Whether this is a postponed process. See language reference.

sensitivity: ProcessSensitivity

The sensitivity list.

decls: Vec<DeclInProcRef>

The declarations made before the begin keyword.

stmts: Vec<SeqStmtRef>

The statements inside the process.

Trait Implementations

Allocate a value of type T.

Formats the value using the given formatter. Read more

Creates the node with the given ID. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.