pub struct ReplaceOrderNotFoundResponse {
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_client_extensions_modify_reject_transaction: Option<Box<Transaction>>,
}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_client_extensions_modify_reject_transaction: Option<Box<Transaction>>Implementations§
Source§impl ReplaceOrderNotFoundResponse
impl ReplaceOrderNotFoundResponse
pub fn new() -> ReplaceOrderNotFoundResponse
Trait Implementations§
Source§impl Clone for ReplaceOrderNotFoundResponse
impl Clone for ReplaceOrderNotFoundResponse
Source§fn clone(&self) -> ReplaceOrderNotFoundResponse
fn clone(&self) -> ReplaceOrderNotFoundResponse
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 ReplaceOrderNotFoundResponse
impl Debug for ReplaceOrderNotFoundResponse
Source§impl Default for ReplaceOrderNotFoundResponse
impl Default for ReplaceOrderNotFoundResponse
Source§fn default() -> ReplaceOrderNotFoundResponse
fn default() -> ReplaceOrderNotFoundResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplaceOrderNotFoundResponse
impl<'de> Deserialize<'de> for ReplaceOrderNotFoundResponse
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 ReplaceOrderNotFoundResponse
Auto Trait Implementations§
impl Freeze for ReplaceOrderNotFoundResponse
impl RefUnwindSafe for ReplaceOrderNotFoundResponse
impl Send for ReplaceOrderNotFoundResponse
impl Sync for ReplaceOrderNotFoundResponse
impl Unpin for ReplaceOrderNotFoundResponse
impl UnsafeUnpin for ReplaceOrderNotFoundResponse
impl UnwindSafe for ReplaceOrderNotFoundResponse
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