pub struct KeysBetaApiClient { /* private fields */ }
Implementations§
Source§impl KeysBetaApiClient
impl KeysBetaApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl KeysBetaApi for KeysBetaApiClient
impl KeysBetaApi for KeysBetaApiClient
Source§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<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<GetMpcKeysResponse, Error<GetMpcKeysListError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Returns a list of MPC signing keys of the workspace. For each key, the list of players associated with it is attached. Note: This endpoint is currently in beta and might be subject to changes.
Source§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,
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,
Returns a list of MPC signing keys of a specific user. For each key, the list of players associated with it is attached. Note: This endpoint is currently in beta and might be subject to changes.
Auto Trait Implementations§
impl Freeze for KeysBetaApiClient
impl !RefUnwindSafe for KeysBetaApiClient
impl Send for KeysBetaApiClient
impl Sync for KeysBetaApiClient
impl Unpin for KeysBetaApiClient
impl !UnwindSafe for KeysBetaApiClient
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more