[][src]Trait aqueue::queue::QueueItem

pub trait QueueItem {
#[must_use]    pub fn run<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = AResult<()>> + Send + Sync + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

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

Loading content...

Implementors

impl<A, T, S> QueueItem for AQueueItem<A, T, S> where
    T: Future<Output = AResult<S>> + Send + Sync,
    A: Send + Sync
[src]

Loading content...