pub enum WindowChange {
    New,
    Close,
    Focus,
    Title,
    FullscreenMode,
    Move,
    Floating,
    Urgent,
    Mark,
    Unknown,
}
Expand description

The kind of window change.

Variants§

§

New

The window has become managed by i3.

§

Close

The window has closed>.

§

Focus

The window has received input focus.

§

Title

The window’s title has changed.

§

FullscreenMode

The window has entered or exited fullscreen mode.

§

Move

The window has changed its position in the tree.

§

Floating

The window has transitioned to or from floating.

§

Urgent

The window has become urgent or lost its urgent status.

§

Mark

Available on crate feature i3-4-13 only.

A mark has been added to or removed from the window.

§

Unknown

A WindowChange we don’t support yet.

Trait Implementations§

Formats the value using the given formatter. 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.