pub struct NftApiClient { /* private fields */ }Implementations§
Source§impl NftApiClient
impl NftApiClient
pub fn new(configuration: ConfigurationRestApi) -> Self
Trait Implementations§
Source§impl Clone for NftApiClient
impl Clone for NftApiClient
Source§fn clone(&self) -> NftApiClient
fn clone(&self) -> NftApiClient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NftApiClient
impl Debug for NftApiClient
Source§impl NftApi for NftApiClient
impl NftApi for NftApiClient
fn get_nft_asset<'life0, 'async_trait>(
&'life0 self,
params: GetNftAssetParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetNftAssetResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_nft_deposit_history<'life0, 'async_trait>(
&'life0 self,
params: GetNftDepositHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetNftDepositHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_nft_transaction_history<'life0, 'async_trait>(
&'life0 self,
params: GetNftTransactionHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetNftTransactionHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_nft_withdraw_history<'life0, 'async_trait>(
&'life0 self,
params: GetNftWithdrawHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetNftWithdrawHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl !Freeze for NftApiClient
impl !RefUnwindSafe for NftApiClient
impl !UnwindSafe for NftApiClient
impl Send for NftApiClient
impl Sync for NftApiClient
impl Unpin for NftApiClient
impl UnsafeUnpin for NftApiClient
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