Struct golem_client::api::AccountClientLive
source · pub struct AccountClientLive {
pub context: Context,
}
Fields§
§context: Context
Trait Implementations§
source§impl AccountClient for AccountClientLive
impl AccountClient for AccountClientLive
fn account_id_get<'life0, 'life1, 'async_trait>(
&'life0 self,
account_id: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Account, Error<AccountError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn account_id_put<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
account_id: &'life1 str,
value: &'life2 AccountData
) -> Pin<Box<dyn Future<Output = Result<Account, Error<AccountError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn account_id_delete<'life0, 'life1, 'async_trait>(
&'life0 self,
account_id: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<DeleteAccountResponse, Error<AccountError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn account_id_plan_get<'life0, 'life1, 'async_trait>(
&'life0 self,
account_id: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Plan, Error<AccountError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn post<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 AccountData
) -> Pin<Box<dyn Future<Output = Result<Account, Error<AccountError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for AccountClientLive
impl Send for AccountClientLive
impl Sync for AccountClientLive
impl Unpin for AccountClientLive
impl !UnwindSafe for AccountClientLive
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