pub trait Gamepad: Send + Sync {
// Required methods
fn next_event<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = GamepadEvent> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn stop(&self);
}