[][src]Trait moore_vhdl::arenas::AllocInto

pub trait AllocInto<'t, T: 't>: for<'a> Alloc<'a, 't, T> { }

Allocates values into some arena.

This is merely a marker trait that you should not implement yourself. It is implemented automatically on anything that supports Alloc<'a, 't, T> for any 'a. The allocated values have the lifetime 't.

Implementors

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

Loading content...