Type Definition coca::storage::InlineStorage

source · []
pub type InlineStorage<T, const C: usize> = [MaybeUninit<T>; C];
Expand description

Shorthand for [MaybeUninit<T>; C] for use with generic data structures.

Trait Implementations

Extracts a pointer to the beginning of the memory block. Read more

Extracts a mutable pointer to the beginning of the memory block. Read more

Returns the maximum number of items the memory block can hold. Read more