pub struct TradeConfirmationStatement {
pub account_id: String,
pub trades: TradesWrapper,
}Expand description
Trade Confirmation FLEX statement
Contains real-time trade execution data from a Trade Confirmation FLEX query. This is refreshed immediately after each trade execution.
Fields§
§account_id: StringIB account number
trades: TradesWrapperTrade executions
Trait Implementations§
Source§impl Clone for TradeConfirmationStatement
impl Clone for TradeConfirmationStatement
Source§fn clone(&self) -> TradeConfirmationStatement
fn clone(&self) -> TradeConfirmationStatement
Returns a duplicate of the value. Read more
1.0.0 · 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 TradeConfirmationStatement
impl Debug for TradeConfirmationStatement
Source§impl<'de> Deserialize<'de> for TradeConfirmationStatement
impl<'de> Deserialize<'de> for TradeConfirmationStatement
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 TradeConfirmationStatement
Auto Trait Implementations§
impl Freeze for TradeConfirmationStatement
impl RefUnwindSafe for TradeConfirmationStatement
impl Send for TradeConfirmationStatement
impl Sync for TradeConfirmationStatement
impl Unpin for TradeConfirmationStatement
impl UnwindSafe for TradeConfirmationStatement
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