[][src]Struct i3ipc::event::WorkspaceEventInfo

pub struct WorkspaceEventInfo {
    pub change: WorkspaceChange,
    pub current: Option<Node>,
    pub old: Option<Node>,
}

Data for WorkspaceEvent.

Fields

change: WorkspaceChange

The type of change.

current: Option<Node>

Will be Some if the type of event affects the workspace.

old: Option<Node>

Will be Some only when change == Focus and there was a previous workspace. Note that if the previous workspace was empty it will get destroyed when switching, but will still appear here.

Trait Implementations

impl Debug for WorkspaceEventInfo[src]

impl FromStr for WorkspaceEventInfo[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]