#[repr(C)]pub struct MarketDataBaseField {
pub is_null: bool,
pub TradingDay: String,
pub PreSettlementPrice: f64,
pub PreClosePrice: f64,
pub PreOpenInterest: f64,
pub PreDelta: f64,
}Expand description
行情基础属性
Fields§
§is_null: boolC++ 端传入的整体 Field 是否为 nullptr
TradingDay: String交易日
PreSettlementPrice: f64上次结算价
PreClosePrice: f64昨收盘
PreOpenInterest: f64昨持仓量
PreDelta: f64昨虚实度
Trait Implementations§
Source§impl Clone for MarketDataBaseField
impl Clone for MarketDataBaseField
Source§impl Debug for MarketDataBaseField
impl Debug for MarketDataBaseField
Source§impl Default for MarketDataBaseField
impl Default for MarketDataBaseField
Source§impl ExternType for MarketDataBaseField
impl ExternType for MarketDataBaseField
Auto Trait Implementations§
impl Freeze for MarketDataBaseField
impl RefUnwindSafe for MarketDataBaseField
impl Send for MarketDataBaseField
impl Sync for MarketDataBaseField
impl Unpin for MarketDataBaseField
impl UnsafeUnpin for MarketDataBaseField
impl UnwindSafe for MarketDataBaseField
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