pub trait LimitsClient {
// Required methods
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
account_id: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<ResourceLimits, Error<LimitsError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn post<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 BatchUpdateResourceLimits
) -> Pin<Box<dyn Future<Output = Result<UpdateResourceLimitsResponse, Error<LimitsError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}