pub struct AmendOrderResponse {
pub transact_time: u64,
pub execution_id: u64,
pub amended_order: AmendedOrderInfo,
pub list_status: Option<AmendListStatus>,
}Expand description
Response from order amend keep priority endpoint.
Fields§
§transact_time: u64Transaction time.
execution_id: u64Execution ID.
amended_order: AmendedOrderInfoAmended order details.
list_status: Option<AmendListStatus>List status (only present for orders that are part of order lists).
Trait Implementations§
Source§impl Clone for AmendOrderResponse
impl Clone for AmendOrderResponse
Source§fn clone(&self) -> AmendOrderResponse
fn clone(&self) -> AmendOrderResponse
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 AmendOrderResponse
impl Debug for AmendOrderResponse
Source§impl<'de> Deserialize<'de> for AmendOrderResponse
impl<'de> Deserialize<'de> for AmendOrderResponse
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 AmendOrderResponse
impl RefUnwindSafe for AmendOrderResponse
impl Send for AmendOrderResponse
impl Sync for AmendOrderResponse
impl Unpin for AmendOrderResponse
impl UnwindSafe for AmendOrderResponse
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