pub type TinyDeque<T> = Confined<VecDeque<T>, ZERO, U8>;
VecDeque with maximum 255 items of type T.
VecDeque
T
struct TinyDeque<T>(/* private fields */);