Enum ControlModeState
enum ControlModeState {
Inactive,
Initiated,
Active,
}Expand description
Enum of all possible control mode states.
Variants§
Inactive
Controle mode is inactive.
Initiated
One of the keys required for the control mode key combination is currently being pressed.
Active
All required keys for the control mode key combination were pressed and control mode is now active.
Active control mode prevents any input records from being sent to clients.
Trait Implementations§
§impl Debug for ControlModeState
impl Debug for ControlModeState
§impl PartialEq for ControlModeState
impl PartialEq for ControlModeState
impl StructuralPartialEq for ControlModeState
Auto Trait Implementations§
impl Freeze for ControlModeState
impl RefUnwindSafe for ControlModeState
impl Send for ControlModeState
impl Sync for ControlModeState
impl Unpin for ControlModeState
impl UnwindSafe for ControlModeState
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