pub trait TopUpIdentity {
    // Required method
    fn top_up_identity<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        sdk: &'life1 Sdk,
        asset_lock_proof: AssetLockProof,
        asset_lock_proof_private_key: &'life2 PrivateKey,
        user_fee_increase: Option<UserFeeIncrease>,
    ) -> Pin<Box<dyn Future<Output = Result<u64, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
}

Required Methods§

source

fn top_up_identity<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, sdk: &'life1 Sdk, asset_lock_proof: AssetLockProof, asset_lock_proof_private_key: &'life2 PrivateKey, user_fee_increase: Option<UserFeeIncrease>, ) -> Pin<Box<dyn Future<Output = Result<u64, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§