pub struct BlockchainsAssetsBetaApiClient { /* private fields */ }
Implementations§
Source§impl BlockchainsAssetsBetaApiClient
impl BlockchainsAssetsBetaApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl BlockchainsAssetsBetaApi for BlockchainsAssetsBetaApiClient
impl BlockchainsAssetsBetaApi for BlockchainsAssetsBetaApiClient
Source§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_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,
Returns an asset by ID or legacyID. Note: - This endpoint is now in Beta, disabled for general availability at this time.
Source§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 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,
Returns a blockchain by ID or legacyID. Note: - This endpoint is now in Beta, disabled for general availability at this time.
Source§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_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,
Returns all asset type supported by Fireblocks. Note: - This endpoint is now in Beta, disabled for general availability at this time.
Source§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,
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,
Returns all blockchains supported by Fireblocks. Note: - This endpoint is now in Beta, disabled for general availability at this time.
Auto Trait Implementations§
impl Freeze for BlockchainsAssetsBetaApiClient
impl !RefUnwindSafe for BlockchainsAssetsBetaApiClient
impl Send for BlockchainsAssetsBetaApiClient
impl Sync for BlockchainsAssetsBetaApiClient
impl Unpin for BlockchainsAssetsBetaApiClient
impl !UnwindSafe for BlockchainsAssetsBetaApiClient
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