Struct sync::mpmc_bounded_queue::Queue[src]

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

Methods

impl<T: Send> Queue<T>

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

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

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

Trait Implementations

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

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

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