Struct syncbox::ArrayQueue
[−]
[src]
pub struct ArrayQueue<T> {
// some fields omitted
}pub struct ArrayQueue<T> {
// some fields omitted
}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>impl<T: Send + 'static> Clone for ArrayQueue<T>fn clone(&self) -> ArrayQueue<T>fn clone_from(&mut self, source: &Self)