pub type OwnedHistoryBufStorage<T, const N: usize> = HistoryBufStorageInner<[MaybeUninit<T>; N]>;
Expand description
Implementation of HistoryBufStorage
that stores the data in an array [T; N]
whose size is known at compile time.
Aliased Type§
pub struct OwnedHistoryBufStorage<T, const N: usize> { /* private fields */ }