struct GlobalStateOut {Show 26 fields
market_hk: i32,
market_us: i32,
market_sh: i32,
market_sz: i32,
market_hk_future: i32,
market_us_future: Option<i32>,
market_sg_future: Option<i32>,
market_jp_future: Option<i32>,
qot_logined: bool,
trd_logined: bool,
server_ver: i32,
server_build_no: i32,
server_time: i64,
conn_id: Option<u64>,
time: i64,
local_time: Option<f64>,
program_status: Option<Value>,
qot_svr_ip_addr: Option<String>,
trd_svr_ip_addr: Option<String>,
market_bond: Option<i32>,
market_global_index: Option<i32>,
market_sg_security: Option<i32>,
market_stock_connect: Option<i32>,
market_digital_ccy: Option<i32>,
market_treasury_yield: Option<i32>,
market_fund: Option<i32>,
}Fields§
§market_hk: i32§market_us: i32§market_sh: i32§market_sz: i32§market_hk_future: i32§market_us_future: Option<i32>§market_sg_future: Option<i32>§market_jp_future: Option<i32>§qot_logined: bool§trd_logined: bool§server_ver: i32§server_build_no: i32§server_time: i64§conn_id: Option<u64>§time: i64§local_time: Option<f64>§program_status: Option<Value>§qot_svr_ip_addr: Option<String>§trd_svr_ip_addr: Option<String>§market_bond: Option<i32>§market_global_index: Option<i32>§market_sg_security: Option<i32>§market_stock_connect: Option<i32>§market_digital_ccy: Option<i32>§market_treasury_yield: Option<i32>§market_fund: Option<i32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GlobalStateOut
impl RefUnwindSafe for GlobalStateOut
impl Send for GlobalStateOut
impl Sync for GlobalStateOut
impl Unpin for GlobalStateOut
impl UnsafeUnpin for GlobalStateOut
impl UnwindSafe for GlobalStateOut
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more