Trait concurrency_traits::queue::PeekQueue[][src]

pub trait PeekQueue: Queue + TryPeekQueue {
    fn peek(&self) -> Self::Peeked;
}
Expand description

A queue that can be peeked into

Required methods

fn peek(&self) -> Self::Peeked[src]

Peeks into the queue blocking until item is in

Implementors