[][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<AssertStmt>> for Arenas[src]

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

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

impl<'a> Alloc<'a, 'a, Stmt<IfStmt>> 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<NullStmt>> for Arenas[src]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.