pub struct Workspace {
pub id: u64,
pub idx: u8,
pub name: Option<String>,
pub output: Option<String>,
pub is_active: bool,
pub is_focused: bool,
pub active_window_id: Option<u64>,
}
Expand description
A workspace.
Fields§
§id: u64
Unique id of this workspace.
This id remains constant regardless of the workspace moving around and across monitors.
Do not assume that workspace ids will always increase without wrapping, or start at 1. That is an implementation detail subject to change. For example, ids may change to be randomly generated for each new workspace.
idx: u8
Index of the workspace on its monitor.
This is the same index you can use for requests like niri msg action focus-workspace
.
This index will change as you move and re-order workspace. It is merely the workspace’s current position on its monitor. Workspaces on different monitors can have the same index.
If you need a unique workspace id that doesn’t change, see Self::id
.
name: Option<String>
Optional name of the workspace.
output: Option<String>
Name of the output that the workspace is on.
Can be None
if no outputs are currently connected.
is_active: bool
Whether the workspace is currently active on its output.
Every output has one active workspace, the one that is currently visible on that output.
is_focused: bool
Whether the workspace is currently focused.
There’s only one focused workspace across all outputs.
active_window_id: Option<u64>
Id of the active window on this workspace, if any.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Workspace
impl<'de> Deserialize<'de> for Workspace
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>,
impl Eq for Workspace
impl StructuralPartialEq for Workspace
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnwindSafe for Workspace
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)