pub struct GetFundInfo {
pub code: String,
pub date: String,
}
Expand description
获取单个基金的基本信息 参数: code: 基金代码 date: 查询日期, 默认日期是今天。 返回: fund_name: 基金全称 fund_type: 基金类型 fund_establishment_day: 基金成立日 fund_manager: 基金管理人及基本信息 fund_management_fee: 基金管理费 fund_custodian_fee: 基金托管费 fund_status: 基金申购赎回状态 fund_size: 基金规模(季度) fund_share: 基金份额(季度) fund_asset_allocation_proportion: 基金资产配置比例(季度) heavy_hold_stocks: 基金重仓股(季度) heavy_hold_stocks_proportion: 基金重仓股占基金资产净值比例(季度) heavy_hold_bond: 基金重仓债券(季度) heavy_hold_bond_proportion: 基金重仓债券占基金资产净值比例(季度)
Fields§
§code: String
§date: String
Trait Implementations§
Source§impl Debug for GetFundInfo
impl Debug for GetFundInfo
Source§impl<'de> Deserialize<'de> for GetFundInfo
impl<'de> Deserialize<'de> for GetFundInfo
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
Source§impl Response for GetFundInfo
impl Response for GetFundInfo
Auto Trait Implementations§
impl Freeze for GetFundInfo
impl RefUnwindSafe for GetFundInfo
impl Send for GetFundInfo
impl Sync for GetFundInfo
impl Unpin for GetFundInfo
impl UnwindSafe for GetFundInfo
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