[][src]Struct jqdata_blocking::model::MoneyFlow

pub struct MoneyFlow {
    pub date: String,
    pub sec_code: String,
    pub change_pct: f64,
    pub net_amount_main: f64,
    pub net_pct_main: f64,
    pub net_amount_xl: f64,
    pub net_pct_xl: f64,
    pub net_amount_l: f64,
    pub net_pct_l: f64,
    pub net_amount_m: f64,
    pub net_pct_m: f64,
    pub net_amount_s: f64,
    pub net_pct_s: f64,
}

Fields

date: Stringsec_code: Stringchange_pct: f64net_amount_main: f64net_pct_main: f64net_amount_xl: f64net_pct_xl: f64net_amount_l: f64net_pct_l: f64net_amount_m: f64net_pct_m: f64net_amount_s: f64net_pct_s: f64

Trait Implementations

impl Debug for MoneyFlow[src]

impl<'de> Deserialize<'de> for MoneyFlow[src]

impl Serialize for MoneyFlow[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,