Trait concurrency_traits::PrependQueue[][src]

pub trait PrependQueue: Queue + TryPrependQueue {
    fn push_front(&self, value: Self::Item);
}

A queue that can be prepended (items placed in front)

Required methods

fn push_front(&self, value: Self::Item)[src]

Adds an item to the front of the queue blocking until able

Loading content...

Implementors

impl<T: ?Sized> PrependQueue for T where
    T: Deref,
    T::Target: PrependQueue
[src]

Loading content...