Struct etradeTaxReturnHelper::Transaction
source · pub struct Transaction {
pub transaction_date: String,
pub gross_us: f32,
pub tax_us: f32,
pub exchange_rate_date: String,
pub exchange_rate: f32,
}Fields§
§transaction_date: String§gross_us: f32§tax_us: f32§exchange_rate_date: String§exchange_rate: f32Trait Implementations§
source§impl Debug for Transaction
impl Debug for Transaction
source§impl PartialEq<Transaction> for Transaction
impl PartialEq<Transaction> for Transaction
source§fn eq(&self, other: &Transaction) -> bool
fn eq(&self, other: &Transaction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<Transaction> for Transaction
impl PartialOrd<Transaction> for Transaction
source§fn partial_cmp(&self, other: &Transaction) -> Option<Ordering>
fn partial_cmp(&self, other: &Transaction) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more