Trait moore_vhdl::arenas::Alloc [] [src]

pub trait Alloc<T> {
    fn alloc(&self, value: T) -> &mut T;
}

Allocates objects into an arena.

Required Methods

Allocate an object of type T into this arena.

Implementors