pub enum WindowChange {
New,
Close,
Focus,
Title,
FullscreenMode,
Move,
Floating,
Urgent,
Mark,
}
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
a mark has been added to or removed from the window
Trait Implementations§
Source§impl Clone for WindowChange
impl Clone for WindowChange
Source§fn clone(&self) -> WindowChange
fn clone(&self) -> WindowChange
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WindowChange
impl Debug for WindowChange
Source§impl<'de> Deserialize<'de> for WindowChange
impl<'de> Deserialize<'de> for WindowChange
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WindowChange, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WindowChange, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for WindowChange
impl Hash for WindowChange
Source§impl PartialEq for WindowChange
impl PartialEq for WindowChange
Source§impl Serialize for WindowChange
impl Serialize for WindowChange
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for WindowChange
impl Eq for WindowChange
impl StructuralPartialEq for WindowChange
Auto Trait Implementations§
impl Freeze for WindowChange
impl RefUnwindSafe for WindowChange
impl Send for WindowChange
impl Sync for WindowChange
impl Unpin for WindowChange
impl UnwindSafe for WindowChange
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
Mutably borrows from an owned value. Read more