[][src]Struct moore_vhdl::konst2::ConstArena

pub struct ConstArena<'t> {
    pub integer: Arena<IntegerConst<'t>>,
    pub floating: Arena<FloatingConst<'t>>,
}

An arena to allocate constant values into.

Fields

integer: Arena<IntegerConst<'t>>floating: Arena<FloatingConst<'t>>

Implementations

impl<'t> ConstArena<'t>[src]

pub fn new() -> ConstArena<'t>[src]

Create a new arena.

Trait Implementations

impl<'a, 't> Alloc<'a, 'a, FloatingConst<'t>> for ConstArena<'t> where
    't: 'a, 
[src]

impl<'a, 't> Alloc<'a, 'a, IntegerConst<'t>> for ConstArena<'t> where
    't: 'a, 
[src]

impl<'t> AllocOwned<'t, 't, dyn Const2<'t> + 't> for ConstArena<'t>[src]

impl<'t> Default for ConstArena<'t>[src]

Auto Trait Implementations

impl<'t> !RefUnwindSafe for ConstArena<'t>

impl<'t> !Send for ConstArena<'t>

impl<'t> !Sync for ConstArena<'t>

impl<'t> Unpin for ConstArena<'t>

impl<'t> !UnwindSafe for ConstArena<'t>

Blanket Implementations

impl<T, A> AllocSelf<T> for A where
    A: for<'a> Alloc<'a, 'a, T>, 
[src]

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.