[][src]Trait moore_vhdl::arenas::AllocOwnedSelf

pub trait AllocOwnedSelf<T: ToOwned + ?Sized>: for<'a> AllocOwned<'a, 'a, T> { }

Allocates values implementing ToOwned into itself.

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

Implementors

impl<T: ?Sized, A> AllocOwnedSelf<T> for A where
    T: ToOwned,
    A: for<'a> AllocOwned<'a, 'a, T>, 
[src]

Loading content...