Struct rotor::mio::util::Queue [] [src]

pub struct Queue<T> {
    // some fields omitted
}

Methods

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>

Trait Implementations

impl<T> Clone for Queue<T> where T: Send

fn clone(&self) -> Queue<T>

1.0.0fn clone_from(&mut self, source: &Self)