[][src]Struct moore_vhdl::hir::Arch

pub struct Arch {
    pub ctx_items: CtxItemsRef,
    pub entity: EntityRef,
    pub name: Spanned<Name>,
    pub decls: Vec<DeclInBlockRef>,
    pub stmts: Vec<ConcStmtRef>,
}

Fields

ctx_items: CtxItemsRef

The context items associated with the entity.

entity: EntityRef

The entity of the architecture.

name: Spanned<Name>

The architecture name.

decls: Vec<DeclInBlockRef>

The list of declarations in the architecture.

stmts: Vec<ConcStmtRef>

The list of statements in the architecture.

Trait Implementations

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

impl Debug for Arch
[src]

impl<'lazy, 'sb, 'ast, 'ctx> NodeMaker<ArchRef, &'ctx Arch> for ScoreContext<'lazy, 'sb, 'ast, 'ctx>
[src]

Auto Trait Implementations

impl Send for Arch

impl Sync for Arch

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.