pub type Popped<T> = Option<T>;
A value popped from CircularQueue<T> as the result of a push operation.
CircularQueue<T>
pub enum Popped<T> { None, Some(T), }
No value.
Some value of type T.
T