pub struct WindowEventInfo {
pub change: WindowChange,
pub container: Node,
}Expand description
Data for WindowEvent.
Fields§
§change: WindowChangeIndicates the type of change
container: NodeThe window’s parent container. Be aware that for the “new” event, the container will hold the initial name of the newly reparented window (e.g. if you run urxvt with a shell that changes the title, you will still at this point get the window title as “urxvt”).
Trait Implementations§
Source§impl Debug for WindowEventInfo
impl Debug for WindowEventInfo
Auto Trait Implementations§
impl Freeze for WindowEventInfo
impl RefUnwindSafe for WindowEventInfo
impl Send for WindowEventInfo
impl Sync for WindowEventInfo
impl Unpin for WindowEventInfo
impl UnsafeUnpin for WindowEventInfo
impl UnwindSafe for WindowEventInfo
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