Struct xcb::x::MapNotifyEvent
source · pub struct MapNotifyEvent { /* private fields */ }
Expand description
a window was mapped
Implementations§
source§impl MapNotifyEvent
impl MapNotifyEvent
pub fn new( event: Window, window: Window, override_redirect: bool, ) -> MapNotifyEvent
pub fn response_type(&self) -> u8
pub fn sequence(&self) -> u16
sourcepub fn event(&self) -> Window
pub fn event(&self) -> Window
The window which was mapped or its parent, depending on whether
StructureNotify
or SubstructureNotify
was selected.
sourcepub fn override_redirect(&self) -> bool
pub fn override_redirect(&self) -> bool
Window managers should ignore this window if override_redirect
is 1.
Trait Implementations§
source§impl BaseEvent for MapNotifyEvent
impl BaseEvent for MapNotifyEvent
source§impl Debug for MapNotifyEvent
impl Debug for MapNotifyEvent
source§impl Drop for MapNotifyEvent
impl Drop for MapNotifyEvent
source§impl Raw<xcb_generic_event_t> for MapNotifyEvent
impl Raw<xcb_generic_event_t> for MapNotifyEvent
impl Send for MapNotifyEvent
impl Sync for MapNotifyEvent
Auto Trait Implementations§
impl Freeze for MapNotifyEvent
impl RefUnwindSafe for MapNotifyEvent
impl Unpin for MapNotifyEvent
impl UnwindSafe for MapNotifyEvent
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