pub trait GrantClient {
// Required methods
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
account_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<Role>, Error<GrantError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn role_get<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
account_id: &'life1 str,
role: &'life2 Role,
) -> Pin<Box<dyn Future<Output = Result<Role, Error<GrantError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn role_put<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
account_id: &'life1 str,
role: &'life2 Role,
) -> Pin<Box<dyn Future<Output = Result<Role, Error<GrantError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn role_delete<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
account_id: &'life1 str,
role: &'life2 Role,
) -> Pin<Box<dyn Future<Output = Result<DeleteGrantResponse, Error<GrantError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}