Trait BlockchainsAssetsBetaApi
Source pub trait BlockchainsAssetsBetaApi: Send + Sync {
// Required methods
fn get_asset_by_id<'life0, 'async_trait>(
&'life0 self,
params: GetAssetByIdParams,
) -> Pin<Box<dyn Future<Output = Result<AssetResponseBeta, Error<GetAssetByIdError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_blockchain_by_id<'life0, 'async_trait>(
&'life0 self,
params: GetBlockchainByIdParams,
) -> Pin<Box<dyn Future<Output = Result<BlockchainResponse, Error<GetBlockchainByIdError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn list_assets<'life0, 'async_trait>(
&'life0 self,
params: ListAssetsParams,
) -> Pin<Box<dyn Future<Output = Result<ListAssetsResponse, Error<ListAssetsError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn list_blockchains<'life0, 'async_trait>(
&'life0 self,
params: ListBlockchainsParams,
) -> Pin<Box<dyn Future<Output = Result<ListBlockchainsResponse, Error<ListBlockchainsError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}