[][src]Trait moore_vhdl::arenas::AllocSelf

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

Allocates values into itself.

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

Implementors

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

Loading content...