Struct std::sync::mpmc_bounded_queue::Queue[src]

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

Methods

impl<T: Send> Queue<T>

fn with_capacity<T: Send>(capacity: uint) -> Queue<T>

fn push<T: Send>(&self, value: T) -> bool

fn pop<T: Send>(&self) -> Option<T>

Trait Implementations

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

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

fn clone_from<T: Send>(&mut self, &Queue<T>)