Struct syncbox::ArrayQueue
[−]
[src]
pub struct ArrayQueue<T> {
// some fields omitted
}Methods
impl<T: Send> ArrayQueue<T>[src]
fn with_capacity(capacity: usize) -> ArrayQueue<T>
fn push(&self, value: T) -> Result<(), T>
fn pop(&self) -> Option<T>
Trait Implementations
impl<T: Send> Clone for ArrayQueue<T>[src]
fn clone(&self) -> ArrayQueue<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more