pub struct BfusdApiClient { /* private fields */ }Implementations§
Source§impl BfusdApiClient
impl BfusdApiClient
pub fn new(configuration: ConfigurationRestApi) -> Self
Trait Implementations§
Source§impl BfusdApi for BfusdApiClient
impl BfusdApi for BfusdApiClient
fn get_bfusd_account<'life0, 'async_trait>(
&'life0 self,
params: GetBfusdAccountParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetBfusdAccountResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_bfusd_quota_details<'life0, 'async_trait>(
&'life0 self,
params: GetBfusdQuotaDetailsParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetBfusdQuotaDetailsResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_bfusd_rate_history<'life0, 'async_trait>(
&'life0 self,
params: GetBfusdRateHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetBfusdRateHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_bfusd_redemption_history<'life0, 'async_trait>(
&'life0 self,
params: GetBfusdRedemptionHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetBfusdRedemptionHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_bfusd_rewards_history<'life0, 'async_trait>(
&'life0 self,
params: GetBfusdRewardsHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetBfusdRewardsHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_bfusd_subscription_history<'life0, 'async_trait>(
&'life0 self,
params: GetBfusdSubscriptionHistoryParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<GetBfusdSubscriptionHistoryResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn redeem_bfusd<'life0, 'async_trait>(
&'life0 self,
params: RedeemBfusdParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<RedeemBfusdResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn subscribe_bfusd<'life0, 'async_trait>(
&'life0 self,
params: SubscribeBfusdParams,
) -> Pin<Box<dyn Future<Output = Result<RestApiResponse<SubscribeBfusdResponse>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Source§impl Clone for BfusdApiClient
impl Clone for BfusdApiClient
Source§fn clone(&self) -> BfusdApiClient
fn clone(&self) -> BfusdApiClient
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 moreAuto Trait Implementations§
impl !Freeze for BfusdApiClient
impl !RefUnwindSafe for BfusdApiClient
impl !UnwindSafe for BfusdApiClient
impl Send for BfusdApiClient
impl Sync for BfusdApiClient
impl Unpin for BfusdApiClient
impl UnsafeUnpin for BfusdApiClient
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