Type Alias Popped

Source
pub type Popped<T> = Option<T>;
Expand description

A value popped from CircularQueue<T> as the result of a push operation.

Aliased Type§

pub enum Popped<T> {
    None,
    Some(T),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(T)

Some value of type T.