Struct x11rb_protocol::protocol::xproto::MapWindowRequest
source · pub struct MapWindowRequest {
pub window: Window,
}
Expand description
Makes a window visible.
Maps the specified window. This means making the window visible (as long as its parent is visible).
This MapWindow request will be translated to a MapRequest request if a window manager is running. The window manager then decides to either map the window or not. Set the override-redirect window attribute to true if you want to bypass this mechanism.
If the window manager decides to map the window (or if no window manager is running), a MapNotify event is generated.
If the window becomes viewable and no earlier contents for it are remembered, the X server tiles the window with its background. If the window’s background is undefined, the existing screen contents are not altered, and the X server generates zero or more Expose events.
If the window type is InputOutput, an Expose event will be generated when the window becomes visible. The normal response to an Expose event should be to repaint the window.
§Fields
window
- The window to make visible.
§Errors
Match
- The specified window does not exist.
§See
MapNotify
: eventExpose
: eventUnmapWindow
: request
Fields§
§window: Window
Implementations§
source§impl MapWindowRequest
impl MapWindowRequest
sourcepub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &[u8] ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations§
source§impl Clone for MapWindowRequest
impl Clone for MapWindowRequest
source§fn clone(&self) -> MapWindowRequest
fn clone(&self) -> MapWindowRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MapWindowRequest
impl Debug for MapWindowRequest
source§impl Default for MapWindowRequest
impl Default for MapWindowRequest
source§fn default() -> MapWindowRequest
fn default() -> MapWindowRequest
source§impl<'de> Deserialize<'de> for MapWindowRequest
impl<'de> Deserialize<'de> for MapWindowRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Hash for MapWindowRequest
impl Hash for MapWindowRequest
source§impl Ord for MapWindowRequest
impl Ord for MapWindowRequest
source§fn cmp(&self, other: &MapWindowRequest) -> Ordering
fn cmp(&self, other: &MapWindowRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for MapWindowRequest
impl PartialEq for MapWindowRequest
source§fn eq(&self, other: &MapWindowRequest) -> bool
fn eq(&self, other: &MapWindowRequest) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for MapWindowRequest
impl PartialOrd for MapWindowRequest
source§fn partial_cmp(&self, other: &MapWindowRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &MapWindowRequest) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more