pub trait EventAsyncWrapper {
    // Required method
    fn wait<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<u64>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Trait to wrap around EventAsync, because audio_streams can’t depend on anything in base or cros_async.

Required Methods§

source

fn wait<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<u64>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§