pub(crate) type FrameQueue = Option<VecDeque<(Vec<u8>, u64)>>;Expand description
Backing store for the delivery ring: Some(queue) while open, None once closed
so pop wakes and returns None for a clean shutdown.
Aliased Type§
pub(crate) enum FrameQueue {
None,
Some(VecDeque<(Vec<u8>, u64)>),
}