[][src]Trait acter_queue::queue::QueueItem

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

Required methods

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

Loading content...

Implementors

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

Loading content...