[][src]Trait eiz::rt_queue::PopWait

pub trait PopWait<T: Send> {
    fn pop(&mut self) -> T;
}

The pop operation.

Required methods

fn pop(&mut self) -> T

Removes an item from the container, waiting for a writer if needed.

Loading content...

Implementors

impl<T: Send> PopWait<T> for MpscQueueReader<T>[src]

Loading content...