Struct mio::util::BoundedQueue [] [src]

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

Methods

impl<T: Send> Queue<T>
[src]

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

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

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

Trait Implementations

impl<T: Send> Clone for Queue<T>
[src]

fn clone(&self) -> Queue<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