pub struct CommissionReport {
    pub exec_id: String,
    pub commission: f64,
    pub currency: String,
    pub realized_pnl: f64,
    pub yield_value: f64,
    pub yield_redemption_date: i32,
}Fields§
§exec_id: String§commission: f64§currency: String§realized_pnl: f64§yield_value: f64§yield_redemption_date: i32Trait Implementations§
Source§impl Clone for CommissionReport
 
impl Clone for CommissionReport
Source§fn clone(&self) -> CommissionReport
 
fn clone(&self) -> CommissionReport
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 moreAuto Trait Implementations§
impl Freeze for CommissionReport
impl RefUnwindSafe for CommissionReport
impl Send for CommissionReport
impl Sync for CommissionReport
impl Unpin for CommissionReport
impl UnwindSafe for CommissionReport
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> IntoSql for T
 
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expressionwhere
    Self: Sized + AsExpression<T>,
 
fn into_sql<T>(self) -> Self::Expressionwhere
    Self: Sized + AsExpression<T>,
Convert 
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
    &'a Self: AsExpression<T>,
 
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
    &'a Self: AsExpression<T>,
Convert 
&self to an expression for Diesel’s query builder. Read more