pub struct PropertyEvent {
pub id: Xid,
pub atom: String,
pub is_root: bool,
}
Expand description
A property change on a known client
Fields§
§id: Xid
The ID of the window that had a property changed
atom: String
The property that changed
is_root: bool
Is this window the root window?
Trait Implementations§
Source§impl Clone for PropertyEvent
impl Clone for PropertyEvent
Source§fn clone(&self) -> PropertyEvent
fn clone(&self) -> PropertyEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PropertyEvent
impl Debug for PropertyEvent
Source§impl Hash for PropertyEvent
impl Hash for PropertyEvent
Source§impl PartialEq for PropertyEvent
impl PartialEq for PropertyEvent
impl Eq for PropertyEvent
impl StructuralPartialEq for PropertyEvent
Auto Trait Implementations§
impl Freeze for PropertyEvent
impl RefUnwindSafe for PropertyEvent
impl Send for PropertyEvent
impl Sync for PropertyEvent
impl Unpin for PropertyEvent
impl UnwindSafe for PropertyEvent
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