Skip to main content

OwnedHistoryBufStorage

Type Alias OwnedHistoryBufStorage 

Source
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 */ }

Trait Implementations§

Source§

impl<T, const N: usize> HistoryBufStorage<T> for OwnedHistoryBufStorage<T, N>