#[non_exhaustive]pub struct TradeClientExtensionsModifyRejectTransaction {
pub id: Option<TransactionId>,
pub time: Option<DateTime>,
pub user_id: Option<i64>,
pub account_id: Option<AccountId>,
pub batch_id: Option<TransactionId>,
pub request_id: Option<RequestId>,
pub trade_id: Option<TradeId>,
pub client_trade_id: Option<String>,
pub trade_client_extensions_modify: Option<ClientExtensions>,
pub reject_reason: Option<TransactionRejectReason>,
}Expand description
A TradeClientExtensionsModifyRejectTransaction represents the rejection of the modification of a Trade’s Client Extensions.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<TransactionId>The Transaction’s Identifier.
time: Option<DateTime>The date/time when the Transaction was created.
user_id: Option<i64>The ID of the user that initiated the creation of the Transaction.
account_id: Option<AccountId>The ID of the Account the Transaction was created for.
batch_id: Option<TransactionId>The ID of the “batch” that the Transaction belongs to. Transactions in the same batch are applied to the Account simultaneously.
request_id: Option<RequestId>The Request ID of the request which generated the transaction.
trade_id: Option<TradeId>The ID of the Trade who’s client extensions are to be modified.
client_trade_id: Option<String>The original Client ID of the Trade who’s client extensions are to be modified.
trade_client_extensions_modify: Option<ClientExtensions>The tradeClientExtensionsModify field.
reject_reason: Option<TransactionRejectReason>The rejectReason field.
Trait Implementations§
Source§impl Clone for TradeClientExtensionsModifyRejectTransaction
impl Clone for TradeClientExtensionsModifyRejectTransaction
Source§fn clone(&self) -> TradeClientExtensionsModifyRejectTransaction
fn clone(&self) -> TradeClientExtensionsModifyRejectTransaction
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<'de> Deserialize<'de> for TradeClientExtensionsModifyRejectTransaction
impl<'de> Deserialize<'de> for TradeClientExtensionsModifyRejectTransaction
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 TradeClientExtensionsModifyRejectTransaction
Auto Trait Implementations§
impl Freeze for TradeClientExtensionsModifyRejectTransaction
impl RefUnwindSafe for TradeClientExtensionsModifyRejectTransaction
impl Send for TradeClientExtensionsModifyRejectTransaction
impl Sync for TradeClientExtensionsModifyRejectTransaction
impl Unpin for TradeClientExtensionsModifyRejectTransaction
impl UnsafeUnpin for TradeClientExtensionsModifyRejectTransaction
impl UnwindSafe for TradeClientExtensionsModifyRejectTransaction
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