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