Struct rotor::mio::util::Queue
[−]
[src]
pub struct Queue<T> { // some fields omitted }
pub struct Queue<T> { // some fields omitted }
impl<T> Queue<T> where T: Send
fn with_capacity(capacity: usize) -> Queue<T>
fn push(&self, value: T) -> Result<(), T>
fn pop(&self) -> Option<T>
impl<T> Clone for Queue<T> where T: Send
fn clone(&self) -> Queue<T>
fn clone_from(&mut self, source: &Self)