pub struct TransactionLogEntry {Show 22 fields
pub id: Option<String>,
pub symbol: Option<String>,
pub category: Option<String>,
pub side: Option<String>,
pub transaction_time: Option<String>,
pub type_: Option<String>,
pub trans_sub_type: Option<String>,
pub qty: Option<String>,
pub size: Option<String>,
pub currency: Option<String>,
pub trade_price: Option<String>,
pub funding: Option<String>,
pub fee: Option<String>,
pub cash_flow: Option<String>,
pub change: Option<String>,
pub cash_balance: Option<String>,
pub fee_rate: Option<String>,
pub bonus_change: Option<String>,
pub trade_id: Option<String>,
pub order_id: Option<String>,
pub order_link_id: Option<String>,
pub extra_fees: Option<String>,
}Fields§
§id: Option<String>§symbol: Option<String>§category: Option<String>§side: Option<String>§transaction_time: Option<String>§type_: Option<String>§trans_sub_type: Option<String>§qty: Option<String>§size: Option<String>§currency: Option<String>§trade_price: Option<String>§funding: Option<String>§fee: Option<String>§cash_flow: Option<String>§change: Option<String>§cash_balance: Option<String>§fee_rate: Option<String>§bonus_change: Option<String>§trade_id: Option<String>§order_id: Option<String>§order_link_id: Option<String>§extra_fees: Option<String>Trait Implementations§
Source§impl Clone for TransactionLogEntry
impl Clone for TransactionLogEntry
Source§fn clone(&self) -> TransactionLogEntry
fn clone(&self) -> TransactionLogEntry
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 TransactionLogEntry
impl Debug for TransactionLogEntry
Source§impl<'de> Deserialize<'de> for TransactionLogEntry
impl<'de> Deserialize<'de> for TransactionLogEntry
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 TransactionLogEntry
impl RefUnwindSafe for TransactionLogEntry
impl Send for TransactionLogEntry
impl Sync for TransactionLogEntry
impl Unpin for TransactionLogEntry
impl UnsafeUnpin for TransactionLogEntry
impl UnwindSafe for TransactionLogEntry
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