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