pub struct AsyncMdState {
pub connected: bool,
pub logged_in: bool,
pub login_info: Option<RspUserLoginField>,
}
Expand description
异步行情API状态
Fields§
§connected: bool
§logged_in: bool
§login_info: Option<RspUserLoginField>
Trait Implementations§
Source§impl Clone for AsyncMdState
impl Clone for AsyncMdState
Source§fn clone(&self) -> AsyncMdState
fn clone(&self) -> AsyncMdState
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 AsyncMdState
impl Debug for AsyncMdState
Source§impl Default for AsyncMdState
impl Default for AsyncMdState
Source§fn default() -> AsyncMdState
fn default() -> AsyncMdState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AsyncMdState
impl RefUnwindSafe for AsyncMdState
impl Send for AsyncMdState
impl Sync for AsyncMdState
impl Unpin for AsyncMdState
impl UnwindSafe for AsyncMdState
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