pub enum SystemStatus {
Online,
CancelOnly,
PostOnly,
LimitOnly,
Offline,
}
Expand description
System status | See KISystemStatus
Variants§
Online
Operational, full trading available
CancelOnly
Existing orders are cancelable, but new orders cannot be created
PostOnly
Existing orders are cancelable, and only new post limit orders can be submitted
LimitOnly
Existing orders are cancelable, and only new limit orders can be submitted
Offline
System is offline for maintenance
Trait Implementations§
Source§impl Debug for SystemStatus
impl Debug for SystemStatus
Source§impl<'de> Deserialize<'de> for SystemStatus
impl<'de> Deserialize<'de> for SystemStatus
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 SystemStatus
impl RefUnwindSafe for SystemStatus
impl Send for SystemStatus
impl Sync for SystemStatus
impl Unpin for SystemStatus
impl UnwindSafe for SystemStatus
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