[][src]Trait eiz::rt_queue::Pop

pub trait Pop<T: Send> {
    fn try_pop(&mut self) -> Option<T>;
}

The try_pop operation.

Required methods

fn try_pop(&mut self) -> Option<T>

Tries to remove an item from the container, returning None if no item could be read.

Loading content...

Implementors

impl<T: Send> Pop<T> for AtomicRingReader<T>[src]

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

Loading content...