[][src]Struct moore_vhdl::hir::Stmt

pub struct Stmt<T> {
    pub parent: ScopeRef,
    pub span: Span,
    pub label: Option<Spanned<Name>>,
    pub stmt: T,
}

A statement.

See IEEE 1076-2008 section 10.1.

Fields

parent: ScopeRef

The parent scope.

span: Span

The span this statement covers.

label: Option<Spanned<Name>>

The optional label.

stmt: T

The inner statement.

Trait Implementations

impl<'a> Alloc<'a, 'a, Stmt<WaitStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<AssertStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<ReportStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<VarAssignStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<CallStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<IfStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<CaseStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<LoopStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<NexitStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<ReturnStmt>> for Arenas
[src]

impl<'a> Alloc<'a, 'a, Stmt<NullStmt>> for Arenas
[src]

impl<T: Debug> Debug for Stmt<T>
[src]

Auto Trait Implementations

impl<T> Send for Stmt<T> where
    T: Send

impl<T> Sync for Stmt<T> where
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.