pub struct TotalEarningCat {
pub spot: Option<Vec<TotalEarning>>,
pub derivatives: Option<Vec<TotalEarning>>,
pub options: Option<Vec<TotalEarning>>,
pub convert: Option<Vec<TotalEarning>>,
pub total: Option<Vec<TotalEarning>>,
}Expand description
Total earnings categorized by product line.
Fields§
§spot: Option<Vec<TotalEarning>>§derivatives: Option<Vec<TotalEarning>>§options: Option<Vec<TotalEarning>>§convert: Option<Vec<TotalEarning>>§total: Option<Vec<TotalEarning>>Trait Implementations§
Source§impl Clone for TotalEarningCat
impl Clone for TotalEarningCat
Source§fn clone(&self) -> TotalEarningCat
fn clone(&self) -> TotalEarningCat
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 TotalEarningCat
impl Debug for TotalEarningCat
Source§impl<'de> Deserialize<'de> for TotalEarningCat
impl<'de> Deserialize<'de> for TotalEarningCat
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 TotalEarningCat
impl RefUnwindSafe for TotalEarningCat
impl Send for TotalEarningCat
impl Sync for TotalEarningCat
impl Unpin for TotalEarningCat
impl UnsafeUnpin for TotalEarningCat
impl UnwindSafe for TotalEarningCat
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