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

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