pub type StackBuffer<N> = CircularBuffer<Array<u8, N>>;Available on crate feature
hybrid-array only.Expand description
A circular buffer backed by hybrid_array::Array.
This implementation is used when the hybrid-array feature is enabled.
It allows for type-level sizes (e.g., U10) compatible with hybrid-array & typenum.
Aliased Type§
pub struct StackBuffer<N> { /* private fields */ }