pub struct BalanceParams {
pub account_id: String,
pub total_asset_currency: String,
}Expand description
Parameters for querying account balance.
Fields§
§account_id: StringAccount ID
total_asset_currency: StringCurrency for total assets
Implementations§
Source§impl BalanceParams
impl BalanceParams
Trait Implementations§
Source§impl Clone for BalanceParams
impl Clone for BalanceParams
Source§fn clone(&self) -> BalanceParams
fn clone(&self) -> BalanceParams
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 BalanceParams
impl Debug for BalanceParams
Source§impl<'de> Deserialize<'de> for BalanceParams
impl<'de> Deserialize<'de> for BalanceParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BalanceParams
impl RefUnwindSafe for BalanceParams
impl Send for BalanceParams
impl Sync for BalanceParams
impl Unpin for BalanceParams
impl UnsafeUnpin for BalanceParams
impl UnwindSafe for BalanceParams
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