pub trait Columnation: Sized {
    type InnerRegion: Region<Item = Self>;
}
Expand description

A type that can be stored in a columnar region.

This trait exists only to allow types to name the columnar region that should be used.

Required Associated Types§

The type of region capable of absorbing allocations owned by the Self type. Note: not allocations of Self, but of the things that it owns.

Implementations on Foreign Types§

Implementors§