[][src]Struct moore_vhdl::score::Arenas

pub struct Arenas {
    pub hir: Arenas,
    pub defs: Arena<Defs>,
    pub archs: Arena<ArchTable>,
    pub scope: Arena<Scope>,
    pub ty: Arena<Ty>,
    pub konst: Arena<Const>,
}

A collection of arenas that the scoreboard uses to allocate its nodes.

Fields

hir: Arenasdefs: Arena<Defs>archs: Arena<ArchTable>scope: Arena<Scope>ty: Arena<Ty>konst: Arena<Const>

Methods

impl Arenas
[src]

pub fn new() -> Arenas
[src]

Create a new set of arenas.

Auto Trait Implementations

impl Send for Arenas

impl !Sync for Arenas

Blanket Implementations

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

impl<T> From for 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, 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.

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