Trait makeup::input::Input

source ·
pub trait Input: Debug + Send + Sync + Clone {
    // Required method
    fn next_frame<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<InputFrame>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§