pub struct BithumbOrderInfo {Show 16 fields
pub uuid: SmartString,
pub side: SmartString,
pub ord_type: SmartString,
pub price: SmartString,
pub state: SmartString,
pub market: SmartString,
pub created_at: SmartString,
pub volume: SmartString,
pub remaining_volume: SmartString,
pub reserved_fee: SmartString,
pub remaining_fee: SmartString,
pub paid_fee: SmartString,
pub locked: SmartString,
pub executed_volume: SmartString,
pub trades_count: u64,
pub trades: Vec<BithumbTrade>,
}Expand description
Order information from Bithumb API
Fields§
§uuid: SmartStringOrder UUID
side: SmartStringOrder side (bid/ask)
ord_type: SmartStringOrder type (limit/price/market)
price: SmartStringOrder price
state: SmartStringOrder state (wait/trade/done/cancel)
market: SmartStringMarket symbol
created_at: SmartStringOrder creation timestamp
volume: SmartStringOrder volume
remaining_volume: SmartStringRemaining volume
reserved_fee: SmartStringReserved fee
remaining_fee: SmartStringRemaining fee
paid_fee: SmartStringPaid fee
locked: SmartStringLocked amount
executed_volume: SmartStringExecuted volume
trades_count: u64Number of trades
trades: Vec<BithumbTrade>Trade details
Trait Implementations§
Source§impl Clone for BithumbOrderInfo
impl Clone for BithumbOrderInfo
Source§fn clone(&self) -> BithumbOrderInfo
fn clone(&self) -> BithumbOrderInfo
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 BithumbOrderInfo
impl Debug for BithumbOrderInfo
Source§impl<'de> Deserialize<'de> for BithumbOrderInfo
impl<'de> Deserialize<'de> for BithumbOrderInfo
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 BithumbOrderInfo
impl RefUnwindSafe for BithumbOrderInfo
impl Send for BithumbOrderInfo
impl Sync for BithumbOrderInfo
impl Unpin for BithumbOrderInfo
impl UnwindSafe for BithumbOrderInfo
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