pub struct TradeResultData {
pub order_id: Option<String>,
pub order_link_id: Option<String>,
pub order_status: Option<String>,
pub category: Option<String>,
pub symbol: Option<String>,
}Expand description
Result data from a WS trade operation.
Fields§
§order_id: Option<String>Order ID
order_link_id: Option<String>Client-specified order link ID
order_status: Option<String>Order status
category: Option<String>Category
symbol: Option<String>Symbol
Trait Implementations§
Source§impl Clone for TradeResultData
impl Clone for TradeResultData
Source§fn clone(&self) -> TradeResultData
fn clone(&self) -> TradeResultData
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 TradeResultData
impl Debug for TradeResultData
Source§impl<'de> Deserialize<'de> for TradeResultData
impl<'de> Deserialize<'de> for TradeResultData
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 TradeResultData
impl RefUnwindSafe for TradeResultData
impl Send for TradeResultData
impl Sync for TradeResultData
impl Unpin for TradeResultData
impl UnsafeUnpin for TradeResultData
impl UnwindSafe for TradeResultData
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