pub struct ReplaceOrderResponse {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub last_transaction_id: Option<String>,
pub related_transaction_ids: Option<Vec<i32>>,
pub order_cancel_transaction: Option<Box<OrderCancelTransaction>>,
pub order_create_transaction: Option<Box<Transaction>>,
pub order_fill_transaction: Option<Box<OrderFillTransaction>>,
pub order_reissue_transaction: Option<Box<Transaction>>,
pub order_reissue_reject_transaction: Option<Box<Transaction>>,
pub replacing_order_cancel_transaction: Option<Box<OrderCancelTransaction>>,
}Fields§
§error_code: Option<String>The code of the error that has occurred. This field may not be returned for some errors.
error_message: Option<String>The human-readable description of the error that has occurred.
last_transaction_id: Option<String>The ID of the most recent Transaction created for the Account
The IDs of all Transactions that were created while satisfying the request.
order_cancel_transaction: Option<Box<OrderCancelTransaction>>§order_create_transaction: Option<Box<Transaction>>§order_fill_transaction: Option<Box<OrderFillTransaction>>§order_reissue_transaction: Option<Box<Transaction>>§order_reissue_reject_transaction: Option<Box<Transaction>>§replacing_order_cancel_transaction: Option<Box<OrderCancelTransaction>>Implementations§
Source§impl ReplaceOrderResponse
impl ReplaceOrderResponse
pub fn new() -> ReplaceOrderResponse
Trait Implementations§
Source§impl Clone for ReplaceOrderResponse
impl Clone for ReplaceOrderResponse
Source§fn clone(&self) -> ReplaceOrderResponse
fn clone(&self) -> ReplaceOrderResponse
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 ReplaceOrderResponse
impl Debug for ReplaceOrderResponse
Source§impl Default for ReplaceOrderResponse
impl Default for ReplaceOrderResponse
Source§fn default() -> ReplaceOrderResponse
fn default() -> ReplaceOrderResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplaceOrderResponse
impl<'de> Deserialize<'de> for ReplaceOrderResponse
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
Source§impl PartialEq for ReplaceOrderResponse
impl PartialEq for ReplaceOrderResponse
Source§impl Serialize for ReplaceOrderResponse
impl Serialize for ReplaceOrderResponse
impl StructuralPartialEq for ReplaceOrderResponse
Auto Trait Implementations§
impl Freeze for ReplaceOrderResponse
impl RefUnwindSafe for ReplaceOrderResponse
impl Send for ReplaceOrderResponse
impl Sync for ReplaceOrderResponse
impl Unpin for ReplaceOrderResponse
impl UnsafeUnpin for ReplaceOrderResponse
impl UnwindSafe for ReplaceOrderResponse
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