Struct x11rb::protocol::xproto::UnmapWindowRequest
source · pub struct UnmapWindowRequest {
pub window: u32,
}
Expand description
Makes a window invisible.
Unmaps the specified window. This means making the window invisible (and all its child windows).
Unmapping a window leads to the UnmapNotify
event being generated. Also,
Expose
events are generated for formerly obscured windows.
§Fields
window
- The window to make invisible.
§Errors
Window
- The specified window does not exist.
§See
UnmapNotify
: eventExpose
: eventMapWindow
: request
Fields§
§window: u32
Implementations§
Trait Implementations§
source§impl Clone for UnmapWindowRequest
impl Clone for UnmapWindowRequest
source§fn clone(&self) -> UnmapWindowRequest
fn clone(&self) -> UnmapWindowRequest
Returns a copy 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 UnmapWindowRequest
impl Debug for UnmapWindowRequest
source§impl Default for UnmapWindowRequest
impl Default for UnmapWindowRequest
source§fn default() -> UnmapWindowRequest
fn default() -> UnmapWindowRequest
Returns the “default value” for a type. Read more
source§impl Request for UnmapWindowRequest
impl Request for UnmapWindowRequest
impl Copy for UnmapWindowRequest
impl VoidRequest for UnmapWindowRequest
Auto Trait Implementations§
impl Freeze for UnmapWindowRequest
impl RefUnwindSafe for UnmapWindowRequest
impl Send for UnmapWindowRequest
impl Sync for UnmapWindowRequest
impl Unpin for UnmapWindowRequest
impl UnwindSafe for UnmapWindowRequest
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