pub struct UpbitOrderChance {
pub bid_fee: SmartString,
pub ask_fee: SmartString,
pub bid_account: UpbitOrderChanceAccount,
pub ask_account: UpbitOrderChanceAccount,
pub market: UpbitMarketInfo,
}Expand description
Order chance (parameters and constraints) information
Fields§
§bid_fee: SmartStringBid fee rate
ask_fee: SmartStringAsk fee rate
bid_account: UpbitOrderChanceAccountBid account information
ask_account: UpbitOrderChanceAccountAsk account information
market: UpbitMarketInfoMarket information
Trait Implementations§
Source§impl Clone for UpbitOrderChance
impl Clone for UpbitOrderChance
Source§fn clone(&self) -> UpbitOrderChance
fn clone(&self) -> UpbitOrderChance
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 UpbitOrderChance
impl Debug for UpbitOrderChance
Source§impl<'de> Deserialize<'de> for UpbitOrderChance
impl<'de> Deserialize<'de> for UpbitOrderChance
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 UpbitOrderChance
impl RefUnwindSafe for UpbitOrderChance
impl Send for UpbitOrderChance
impl Sync for UpbitOrderChance
impl Unpin for UpbitOrderChance
impl UnwindSafe for UpbitOrderChance
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