[][src]Struct jqdata::MoneyFlow

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

Fields

date: Stringsec_code: Stringchange_pct: BigDecimalnet_amount_main: BigDecimalnet_pct_main: BigDecimalnet_amount_xl: BigDecimalnet_pct_xl: BigDecimalnet_amount_l: BigDecimalnet_pct_l: BigDecimalnet_amount_m: BigDecimalnet_pct_m: BigDecimalnet_amount_s: BigDecimalnet_pct_s: BigDecimal

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>,