pub struct BithumbAccount {
pub currency: SmartString,
pub balance: SmartString,
pub locked: SmartString,
pub avg_buy_price: SmartString,
pub avg_buy_price_modified: bool,
pub unit_currency: SmartString,
}Expand description
Account balance information
Fields§
§currency: SmartStringCurrency code (e.g., “KRW”, “BTC”)
balance: SmartStringAvailable balance for trading
locked: SmartStringLocked balance in orders
avg_buy_price: SmartStringAverage buy price
avg_buy_price_modified: boolWhether average buy price was modified
unit_currency: SmartStringUnit currency for average price
Trait Implementations§
Source§impl Clone for BithumbAccount
impl Clone for BithumbAccount
Source§fn clone(&self) -> BithumbAccount
fn clone(&self) -> BithumbAccount
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BithumbAccount
impl Debug for BithumbAccount
Source§impl<'de> Deserialize<'de> for BithumbAccount
impl<'de> Deserialize<'de> for BithumbAccount
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 BithumbAccount
impl RefUnwindSafe for BithumbAccount
impl Send for BithumbAccount
impl Sync for BithumbAccount
impl Unpin for BithumbAccount
impl UnwindSafe for BithumbAccount
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