pub trait PackedAllocate: SpreadAllocate + PackedLayout {
    fn allocate_packed(&mut self, at: &Key);
}
Expand description

Types that can be default initialized to a single storage cell.

Required Methods

Indicates to self that is has just been allocated to the storage.

Note

Most types will have to implement a trivial forwarding to their fields.

Implementations on Foreign Types

Implementors