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
sourceimpl ReparentWindowRequest
impl ReparentWindowRequest
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
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
sourceimpl Clone for ReparentWindowRequest
impl Clone for ReparentWindowRequest
sourcefn clone(&self) -> ReparentWindowRequest
fn clone(&self) -> ReparentWindowRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ReparentWindowRequest
impl Debug for ReparentWindowRequest
sourceimpl Default for ReparentWindowRequest
impl Default for ReparentWindowRequest
sourcefn default() -> ReparentWindowRequest
fn default() -> ReparentWindowRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for ReparentWindowRequest
impl Hash for ReparentWindowRequest
sourceimpl Ord for ReparentWindowRequest
impl Ord for ReparentWindowRequest
sourceimpl PartialEq<ReparentWindowRequest> for ReparentWindowRequest
impl PartialEq<ReparentWindowRequest> for ReparentWindowRequest
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ReparentWindowRequest) -> bool
fn ne(&self, other: &ReparentWindowRequest) -> bool
This method tests for !=
.
sourceimpl PartialOrd<ReparentWindowRequest> for ReparentWindowRequest
impl PartialOrd<ReparentWindowRequest> for ReparentWindowRequest
sourcefn partial_cmp(&self, other: &ReparentWindowRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &ReparentWindowRequest) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl Request for ReparentWindowRequest
impl Request for ReparentWindowRequest
impl Copy for ReparentWindowRequest
impl Eq for ReparentWindowRequest
impl StructuralEq for ReparentWindowRequest
impl StructuralPartialEq for ReparentWindowRequest
impl VoidRequest for ReparentWindowRequest
Auto Trait Implementations
impl RefUnwindSafe for ReparentWindowRequest
impl Send for ReparentWindowRequest
impl Sync for ReparentWindowRequest
impl Unpin for ReparentWindowRequest
impl UnwindSafe for ReparentWindowRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more