[][src]Struct jqdata::BillboardStock

pub struct BillboardStock {
    pub code: String,
    pub day: String,
    pub direction: String,
    pub rank: i32,
    pub abnormal_code: String,
    pub abnormal_name: String,
    pub sales_depart_name: String,
    pub buy_value: BigDecimal,
    pub buy_rate: BigDecimal,
    pub sell_value: BigDecimal,
    pub sell_rate: BigDecimal,
    pub total_value: BigDecimal,
    pub net_value: BigDecimal,
    pub amount: BigDecimal,
}

Fields

code: Stringday: Stringdirection: Stringrank: i32abnormal_code: Stringabnormal_name: Stringsales_depart_name: Stringbuy_value: BigDecimalbuy_rate: BigDecimalsell_value: BigDecimalsell_rate: BigDecimaltotal_value: BigDecimalnet_value: BigDecimalamount: BigDecimal

Trait Implementations

impl Debug for BillboardStock[src]

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

impl Serialize for BillboardStock[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: for<'de> 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>,