pub struct GetExtras {
pub code: String,
pub date: String,
pub end_date: String,
}
Expand description
获取基金净值/期货结算价等 参数: code: 证券代码 date: 开始日期 end_date: 结束日期 返回: date: 日期 is_st: 是否是ST,是则返回 1,否则返回 0。股票使用 acc_net_value: 基金累计净值。基金使用 unit_net_value: 基金单位净值。基金使用 futures_sett_price: 期货结算价。期货使用 futures_positions: 期货持仓量。期货使用 adj_net_value: 场外基金的复权净值。场外基金使用
Fields§
§code: String
§date: String
§end_date: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetExtras
impl<'de> Deserialize<'de> for GetExtras
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
Auto Trait Implementations§
impl Freeze for GetExtras
impl RefUnwindSafe for GetExtras
impl Send for GetExtras
impl Sync for GetExtras
impl Unpin for GetExtras
impl UnwindSafe for GetExtras
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