Struct syncbox::ArrayQueue [] [src]

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

Methods

impl<T: Send + 'static> ArrayQueue<T>

fn with_capacity(capacity: usize) -> ArrayQueue<T>

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

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

Trait Implementations

impl<T: Send + 'static> Clone for ArrayQueue<T>

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

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