#[non_exhaustive]
pub struct Workspace { pub id: i64, pub num: i32, pub name: String, pub layout: String, pub visible: bool, pub focused: bool, pub urgent: bool, pub representation: Option<String>, pub orientation: String, pub rect: Rect, pub output: String, pub focus: Vec<i32, Global>, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
id: i64num: i32

The workspace number or -1 for workspaces that do not start with a number.

name: String

The name of the workspace.

layout: Stringvisible: bool

Whether the workspace is currently visible on any output.

focused: bool

Whether the workspace is currently focused by the default seat (seat0).

urgent: bool

Whether a view on the workspace has the urgent flag set.

representation: Option<String>orientation: Stringrect: Rect

The bounds of the workspace. It consists of x, y, width, and height.

output: String

The name of the output that the workspace is on.

focus: Vec<i32, Global>

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.