pub trait Client: Send + Sync {
// Required methods
fn token<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn inner_client(&self) -> &ClientInner;
}