pub struct ClosePositionNotFoundResponse {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub last_transaction_id: Option<String>,
pub related_transaction_ids: Option<Vec<i32>>,
pub long_order_reject_transaction: Option<Box<MarketOrderRejectTransaction>>,
pub short_order_reject_transaction: Option<Box<MarketOrderRejectTransaction>>,
}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.
long_order_reject_transaction: Option<Box<MarketOrderRejectTransaction>>§short_order_reject_transaction: Option<Box<MarketOrderRejectTransaction>>Implementations§
Trait Implementations§
Source§impl Clone for ClosePositionNotFoundResponse
impl Clone for ClosePositionNotFoundResponse
Source§fn clone(&self) -> ClosePositionNotFoundResponse
fn clone(&self) -> ClosePositionNotFoundResponse
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 Default for ClosePositionNotFoundResponse
impl Default for ClosePositionNotFoundResponse
Source§fn default() -> ClosePositionNotFoundResponse
fn default() -> ClosePositionNotFoundResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClosePositionNotFoundResponse
impl<'de> Deserialize<'de> for ClosePositionNotFoundResponse
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
impl StructuralPartialEq for ClosePositionNotFoundResponse
Auto Trait Implementations§
impl Freeze for ClosePositionNotFoundResponse
impl RefUnwindSafe for ClosePositionNotFoundResponse
impl Send for ClosePositionNotFoundResponse
impl Sync for ClosePositionNotFoundResponse
impl Unpin for ClosePositionNotFoundResponse
impl UnsafeUnpin for ClosePositionNotFoundResponse
impl UnwindSafe for ClosePositionNotFoundResponse
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