pub type StackU<T, const N: usize> = Stack<T, ConstArrayBuf<usize, N>>;Expand description
A single LIFO stack of DSTs using a usize aligned buffer
let mut stack = ::stack_dst::StackU::<[u8], 16>::new();
stack.push_copied(&[1]);Aliased Typeยง
pub struct StackU<T, const N: usize> { /* private fields */ }