pub struct TransactionLog {Show 15 fields
pub id: String,
pub symbol: String,
pub category: String,
pub side: String,
pub transaction_time: String,
pub tx_type: String,
pub qty: String,
pub size: String,
pub currency: String,
pub trade_price: String,
pub funding: String,
pub fee: String,
pub cash_flow: String,
pub change: String,
pub cash_balance: String,
}Expand description
Transaction log.
Fields§
§id: StringID
symbol: StringSymbol
category: StringCategory
side: StringSide
transaction_time: StringTransaction time
tx_type: StringType
qty: StringQty
size: StringSize
currency: StringCurrency
trade_price: StringTrade price
funding: StringFunding
fee: StringFee
cash_flow: StringCash flow
change: StringChange
cash_balance: StringCash balance
Trait Implementations§
Source§impl Clone for TransactionLog
impl Clone for TransactionLog
Source§fn clone(&self) -> TransactionLog
fn clone(&self) -> TransactionLog
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 TransactionLog
impl Debug for TransactionLog
Source§impl<'de> Deserialize<'de> for TransactionLog
impl<'de> Deserialize<'de> for TransactionLog
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
Auto Trait Implementations§
impl Freeze for TransactionLog
impl RefUnwindSafe for TransactionLog
impl Send for TransactionLog
impl Sync for TransactionLog
impl Unpin for TransactionLog
impl UnsafeUnpin for TransactionLog
impl UnwindSafe for TransactionLog
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