Trait KeysBetaApi
Source pub trait KeysBetaApi: Send + Sync {
// Required methods
fn get_mpc_keys_list<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<GetMpcKeysResponse, Error<GetMpcKeysListError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_mpc_keys_list_by_user<'life0, 'async_trait>(
&'life0 self,
params: GetMpcKeysListByUserParams,
) -> Pin<Box<dyn Future<Output = Result<GetMpcKeysResponse, Error<GetMpcKeysListByUserError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}