pub struct UpbitOrderChanceAccount {
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 information within order chance
Fields§
§currency: SmartStringCurrency code
balance: SmartStringAvailable balance
locked: SmartStringLocked balance
avg_buy_price: SmartStringAverage buy price
avg_buy_price_modified: boolWhether average buy price was modified
unit_currency: SmartStringUnit currency
Trait Implementations§
Source§impl Clone for UpbitOrderChanceAccount
impl Clone for UpbitOrderChanceAccount
Source§fn clone(&self) -> UpbitOrderChanceAccount
fn clone(&self) -> UpbitOrderChanceAccount
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 UpbitOrderChanceAccount
impl Debug for UpbitOrderChanceAccount
Source§impl<'de> Deserialize<'de> for UpbitOrderChanceAccount
impl<'de> Deserialize<'de> for UpbitOrderChanceAccount
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 UpbitOrderChanceAccount
impl RefUnwindSafe for UpbitOrderChanceAccount
impl Send for UpbitOrderChanceAccount
impl Sync for UpbitOrderChanceAccount
impl Unpin for UpbitOrderChanceAccount
impl UnwindSafe for UpbitOrderChanceAccount
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