pub type DstStackUsize<DST, const CAP: usize> = DstStack<DST, DstArray<usize, CAP>>;
Available on crate feature
unsafe_layout
only.Expand description
A statically allocated LIFO stack of DSTs with pointer alignment.
§Examples
let mut stack = DstStackUsize::<[u8], 16>::new();
stack.push_copied(&[1]);
Aliased Type§
struct DstStackUsize<DST, const CAP: usize> { /* private fields */ }