Skip to main content

ControlModeState

Enum ControlModeState 

enum ControlModeState {
    Inactive,
    Initiated,
    Active,
    EnableDisableSubmenu {
        highlighted_pid: Option<u32>,
        anchor_col: Option<i32>,
    },
}
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.

§

EnableDisableSubmenu

The user opened the [e]nable/disable input submenu from ControlModeState::Active; left only via Esc, which exits control mode entirely. highlighted_pid is the currently selected client (None when the cluster is empty); tracking by PID survives background-monitor retains while the submenu is open.

anchor_col is the upper-grid column carried across vertical moves so a Down + Up roundtrip across the partial-last-row boundary returns to the start cell. None while highlighted_pid is None.

Fields

§highlighted_pid: Option<u32>

PID of the highlighted client, or None for an empty cluster.

§anchor_col: Option<i32>

Anchor upper-grid column carried across vertical moves.

Trait Implementations§

§

impl Debug for ControlModeState

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl PartialEq for ControlModeState

§

fn eq(&self, other: &ControlModeState) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl StructuralPartialEq for ControlModeState

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.