[][src]Trait moore::arenas::AllocOwnedInto

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

Allocates values implementing ToOwned into some arena.

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

Implementors

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

Loading content...