#[repr(C)]pub struct InstrumentStatusField {
pub is_null: bool,
pub ExchangeID: String,
pub SettlementGroupID: String,
pub InstrumentStatus: u8,
pub TradingSegmentSN: i32,
pub EnterTime: String,
pub EnterReason: u8,
pub ExchangeInstID: String,
pub InstrumentID: String,
}Expand description
合约状态
Fields§
§is_null: boolC++ 端传入的整体 Field 是否为 nullptr
ExchangeID: String交易所代码
SettlementGroupID: String结算组代码
InstrumentStatus: u8合约交易状态
TradingSegmentSN: i32交易阶段编号
EnterTime: String进入本状态时间
EnterReason: u8进入本状态原因
ExchangeInstID: String合约在交易所的代码
InstrumentID: String合约代码
Trait Implementations§
Source§impl Clone for InstrumentStatusField
impl Clone for InstrumentStatusField
Source§impl Debug for InstrumentStatusField
impl Debug for InstrumentStatusField
Source§impl Default for InstrumentStatusField
impl Default for InstrumentStatusField
Source§impl ExternType for InstrumentStatusField
impl ExternType for InstrumentStatusField
Auto Trait Implementations§
impl Freeze for InstrumentStatusField
impl RefUnwindSafe for InstrumentStatusField
impl Send for InstrumentStatusField
impl Sync for InstrumentStatusField
impl Unpin for InstrumentStatusField
impl UnsafeUnpin for InstrumentStatusField
impl UnwindSafe for InstrumentStatusField
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