pub type Array<T, const N: usize> = Owning<[MaybeUninit<T>; N]>;
Aliased Type§
struct Array<T, const N: usize> { /* private fields */ }
Trait Implementations§
Source§impl<T, const N: usize> Storage for Array<T, N>
impl<T, const N: usize> Storage for Array<T, N>
Source§fn as_mut_ptr(&self) -> *mut MaybeUninit<T>
fn as_mut_ptr(&self) -> *mut MaybeUninit<T>
Return mutable pointer to the beginning of the storage items.
fn is_empty(&self) -> bool
Source§fn as_ptr(&self) -> *const MaybeUninit<Self::Item>
fn as_ptr(&self) -> *const MaybeUninit<Self::Item>
Return pointer to the beginning of the storage items.