[][src]Struct jqdata::FundInfo

pub struct FundInfo {
    pub fund_name: String,
    pub fund_type: String,
    pub fund_establishment_day: String,
    pub fund_manager: String,
    pub fund_management_fee: String,
    pub fund_custodian_fee: String,
    pub fund_status: String,
    pub fund_size: String,
    pub fund_share: BigDecimal,
    pub fund_asset_allocation_proportion: String,
    pub heavy_hold_stocks: Vec<String>,
    pub heavy_hold_stocks_proportion: BigDecimal,
    pub heavy_hold_bond: Vec<String>,
    pub heavy_hold_bond_proportion: BigDecimal,
}

Fields

fund_name: Stringfund_type: Stringfund_establishment_day: Stringfund_manager: Stringfund_management_fee: Stringfund_custodian_fee: Stringfund_status: Stringfund_size: Stringfund_share: BigDecimalfund_asset_allocation_proportion: Stringheavy_hold_stocks: Vec<String>heavy_hold_stocks_proportion: BigDecimalheavy_hold_bond: Vec<String>heavy_hold_bond_proportion: BigDecimal

Trait Implementations

impl BodyConsumer<FundInfo> for GetFundInfo[src]

impl Debug for FundInfo[src]

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

impl Serialize for FundInfo[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>,