pub struct DepthMarketData {Show 22 fields
pub TradingDay: String,
pub InstrumentID: String,
pub ExchangeID: String,
pub ExchangeInstID: String,
pub LastPrice: f64,
pub PreSettlementPrice: f64,
pub PreClosePrice: f64,
pub PreOpenInterest: f64,
pub OpenPrice: f64,
pub HighestPrice: f64,
pub LowestPrice: f64,
pub Volume: i32,
pub Turnover: f64,
pub OpenInterest: f64,
pub UpperLimitPrice: f64,
pub LowerLimitPrice: f64,
pub UpdateTime: String,
pub UpdateMillisec: i32,
pub BidPrice1: f64,
pub BidVolume1: i32,
pub AskPrice1: f64,
pub AskVolume1: i32,
}
Fields§
§TradingDay: String
§InstrumentID: String
§ExchangeID: String
§ExchangeInstID: String
§LastPrice: f64
§PreSettlementPrice: f64
§PreClosePrice: f64
§PreOpenInterest: f64
§OpenPrice: f64
§HighestPrice: f64
§LowestPrice: f64
§Volume: i32
§Turnover: f64
§OpenInterest: f64
§UpperLimitPrice: f64
§LowerLimitPrice: f64
§UpdateTime: String
§UpdateMillisec: i32
§BidPrice1: f64
§BidVolume1: i32
§AskPrice1: f64
§AskVolume1: i32
Trait Implementations§
Source§impl Clone for DepthMarketData
impl Clone for DepthMarketData
Source§fn clone(&self) -> DepthMarketData
fn clone(&self) -> DepthMarketData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DepthMarketData
impl Debug for DepthMarketData
Source§impl<'de> Deserialize<'de> for DepthMarketData
impl<'de> Deserialize<'de> for DepthMarketData
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 DepthMarketData
impl RefUnwindSafe for DepthMarketData
impl Send for DepthMarketData
impl Sync for DepthMarketData
impl Unpin for DepthMarketData
impl UnwindSafe for DepthMarketData
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