pub trait GameBuilder {
// Required method
fn new<'life0, 'async_trait>(
self,
client: &'life0 Client,
) -> Pin<Box<dyn Future<Output = Game> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}