pub struct GetConnectedAccountRatesParams {
pub account_id: String,
pub base_asset_id: String,
pub quote_asset_id: String,
}Expand description
struct for passing parameters to the method
ConnectedAccountsBetaApi::get_connected_account_rates
Fields§
§account_id: StringThe ID of the account to fetch rates for.
base_asset_id: StringThe ID of the asset to fetch rates for.
quote_asset_id: StringThe ID of the asset to get the rates nominally.
Implementations§
Source§impl GetConnectedAccountRatesParams
impl GetConnectedAccountRatesParams
Sourcepub fn builder() -> GetConnectedAccountRatesParamsBuilder
pub fn builder() -> GetConnectedAccountRatesParamsBuilder
Create an instance of GetConnectedAccountRatesParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetConnectedAccountRatesParams
impl Clone for GetConnectedAccountRatesParams
Source§fn clone(&self) -> GetConnectedAccountRatesParams
fn clone(&self) -> GetConnectedAccountRatesParams
Returns a duplicate of the value. Read more
1.0.0 · 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 GetConnectedAccountRatesParams
impl RefUnwindSafe for GetConnectedAccountRatesParams
impl Send for GetConnectedAccountRatesParams
impl Sync for GetConnectedAccountRatesParams
impl Unpin for GetConnectedAccountRatesParams
impl UnwindSafe for GetConnectedAccountRatesParams
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