pub enum MdSpiMsg {
Show 13 variants
OnFrontConnected,
OnFrontDisconnected(i32),
OnHeartBeatWarning(i32),
OnRspUserLogin(RspUserLoginField, RspInfoField, i32, bool),
OnRspUserLogout(UserLogoutField, RspInfoField, i32, bool),
OnRspQryMulticastInstrument(MulticastInstrumentField, RspInfoField, i32, bool),
OnRspError(RspInfoField, i32, bool),
OnRspSubMarketData(SpecificInstrumentField, RspInfoField, i32, bool),
OnRspUnSubMarketData(SpecificInstrumentField, RspInfoField, i32, bool),
OnRspSubForQuoteRsp(SpecificInstrumentField, RspInfoField, i32, bool),
OnRspUnSubForQuoteRsp(SpecificInstrumentField, RspInfoField, i32, bool),
OnRtnDepthMarketData(DepthMarketDataField),
OnRtnForQuoteRsp(ForQuoteRspField),
}
Variants§
OnFrontConnected
OnFrontDisconnected(i32)
OnHeartBeatWarning(i32)
OnRspUserLogin(RspUserLoginField, RspInfoField, i32, bool)
OnRspUserLogout(UserLogoutField, RspInfoField, i32, bool)
OnRspQryMulticastInstrument(MulticastInstrumentField, RspInfoField, i32, bool)
OnRspError(RspInfoField, i32, bool)
OnRspSubMarketData(SpecificInstrumentField, RspInfoField, i32, bool)
OnRspUnSubMarketData(SpecificInstrumentField, RspInfoField, i32, bool)
OnRspSubForQuoteRsp(SpecificInstrumentField, RspInfoField, i32, bool)
OnRspUnSubForQuoteRsp(SpecificInstrumentField, RspInfoField, i32, bool)
OnRtnDepthMarketData(DepthMarketDataField)
OnRtnForQuoteRsp(ForQuoteRspField)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MdSpiMsg
impl RefUnwindSafe for MdSpiMsg
impl Send for MdSpiMsg
impl Sync for MdSpiMsg
impl Unpin for MdSpiMsg
impl UnwindSafe for MdSpiMsg
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