Trait concurrency_traits::queue::AsyncPeekReverseQueue[][src]

pub trait AsyncPeekReverseQueue: AsyncPeekQueue + AsyncReverseQueue {
    #[must_use]
    fn peek_back_async<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Self::Peeked> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

A queue that can be peeked from behind asynchronously

Required methods

#[must_use]
fn peek_back_async<'life0, 'async_trait>(
    &'life0 self
) -> Pin<Box<dyn Future<Output = Self::Peeked> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Peeks the rear item of the queue blocking until available

Implementors