Trait timely_container::columnation::Columnation
source · 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§
sourcetype InnerRegion: Region<Item = Self>
type InnerRegion: Region<Item = Self>
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.
Object Safety§
This trait is not object safe.