pub struct OrderAmendment {
pub symbol: String,
pub order_id: u64,
pub execution_id: u64,
pub orig_client_order_id: String,
pub new_client_order_id: String,
pub orig_qty: f64,
pub new_qty: f64,
pub time: u64,
}Expand description
Order amendment history entry.
Fields§
§symbol: StringSymbol.
order_id: u64Order ID.
execution_id: u64Execution ID.
orig_client_order_id: StringOriginal client order ID.
new_client_order_id: StringNew client order ID after amendment.
orig_qty: f64Original quantity before amendment.
new_qty: f64New quantity after amendment.
time: u64Amendment time.
Trait Implementations§
Source§impl Clone for OrderAmendment
impl Clone for OrderAmendment
Source§fn clone(&self) -> OrderAmendment
fn clone(&self) -> OrderAmendment
Returns a duplicate of the value. Read more
1.0.0 · 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 OrderAmendment
impl Debug for OrderAmendment
Source§impl<'de> Deserialize<'de> for OrderAmendment
impl<'de> Deserialize<'de> for OrderAmendment
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 OrderAmendment
impl RefUnwindSafe for OrderAmendment
impl Send for OrderAmendment
impl Sync for OrderAmendment
impl Unpin for OrderAmendment
impl UnwindSafe for OrderAmendment
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