Struct x11rb_protocol::protocol::xproto::ReparentWindowRequest
source · pub struct ReparentWindowRequest {
pub window: Window,
pub parent: Window,
pub x: i16,
pub y: i16,
}
Expand description
Reparents a window.
Makes the specified window a child of the specified parent window. If the window is mapped, it will automatically be unmapped before reparenting and re-mapped after reparenting. The window is placed in the stacking order on top with respect to sibling windows.
After reparenting, a ReparentNotify event is generated.
§Fields
window
- The window to reparent.parent
- The new parent of the window.x
- The X position of the window within its new parent.y
- The Y position of the window within its new parent.
§Errors
Match
- The new parent window is not on the same screen as the old parent window.
The new parent window is the specified window or an inferior of the specified window.
The new parent is InputOnly and the window is not.
The specified window has a ParentRelative background and the new parent window is not the same depth as the specified window.
Window
- The specified window does not exist.
§See
ReparentNotify
: eventMapWindow
: requestUnmapWindow
: request
Fields§
§window: Window
§parent: Window
§x: i16
§y: i16
Implementations§
source§impl ReparentWindowRequest
impl ReparentWindowRequest
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 ReparentWindowRequest
impl Clone for ReparentWindowRequest
source§fn clone(&self) -> ReparentWindowRequest
fn clone(&self) -> ReparentWindowRequest
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 ReparentWindowRequest
impl Debug for ReparentWindowRequest
source§impl Default for ReparentWindowRequest
impl Default for ReparentWindowRequest
source§fn default() -> ReparentWindowRequest
fn default() -> ReparentWindowRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReparentWindowRequest
impl<'de> Deserialize<'de> for ReparentWindowRequest
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for ReparentWindowRequest
impl Hash for ReparentWindowRequest
source§impl Ord for ReparentWindowRequest
impl Ord for ReparentWindowRequest
source§fn cmp(&self, other: &ReparentWindowRequest) -> Ordering
fn cmp(&self, other: &ReparentWindowRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ReparentWindowRequest
impl PartialEq for ReparentWindowRequest
source§fn eq(&self, other: &ReparentWindowRequest) -> bool
fn eq(&self, other: &ReparentWindowRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ReparentWindowRequest
impl PartialOrd for ReparentWindowRequest
source§fn partial_cmp(&self, other: &ReparentWindowRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &ReparentWindowRequest) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Request for ReparentWindowRequest
impl Request for ReparentWindowRequest
source§impl Serialize for ReparentWindowRequest
impl Serialize for ReparentWindowRequest
impl Copy for ReparentWindowRequest
impl Eq for ReparentWindowRequest
impl StructuralPartialEq for ReparentWindowRequest
impl VoidRequest for ReparentWindowRequest
Auto Trait Implementations§
impl Freeze for ReparentWindowRequest
impl RefUnwindSafe for ReparentWindowRequest
impl Send for ReparentWindowRequest
impl Sync for ReparentWindowRequest
impl Unpin for ReparentWindowRequest
impl UnwindSafe for ReparentWindowRequest
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