Struct GetGeometryRequest
pub struct GetGeometryRequest {
pub drawable: u32,
}
Expand description
Get current window geometry.
Gets the current geometry of the specified drawable (either Window
or Pixmap
).
§Fields
drawable
- The drawable (Window
orPixmap
) of which the geometry will be received.
§Errors
Drawable
- TODO: reasons?Window
- TODO: reasons?
§See
xwininfo
: program
§Example
/*
* Displays the x and y position of the given window.
*
*/
void my_example(xcb_connection_t *c, xcb_window_t window) {
xcb_get_geometry_cookie_t cookie;
xcb_get_geometry_reply_t *reply;
cookie = xcb_get_geometry(c, window);
/* ... do other work here if possible ... */
if ((reply = xcb_get_geometry_reply(c, cookie, NULL))) {
printf("This window is at %d, %d\\n", reply->x, reply->y);
}
free(reply);
}
Fields§
§drawable: u32
Implementations§
Trait Implementations§
§impl Clone for GetGeometryRequest
impl Clone for GetGeometryRequest
§fn clone(&self) -> GetGeometryRequest
fn clone(&self) -> GetGeometryRequest
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 more§impl Debug for GetGeometryRequest
impl Debug for GetGeometryRequest
§impl Default for GetGeometryRequest
impl Default for GetGeometryRequest
§fn default() -> GetGeometryRequest
fn default() -> GetGeometryRequest
Returns the “default value” for a type. Read more
§impl ReplyRequest for GetGeometryRequest
impl ReplyRequest for GetGeometryRequest
§type Reply = GetGeometryReply
type Reply = GetGeometryReply
The kind of reply that this request generates.
§impl Request for GetGeometryRequest
impl Request for GetGeometryRequest
impl Copy for GetGeometryRequest
Auto Trait Implementations§
impl Freeze for GetGeometryRequest
impl RefUnwindSafe for GetGeometryRequest
impl Send for GetGeometryRequest
impl Sync for GetGeometryRequest
impl Unpin for GetGeometryRequest
impl UnwindSafe for GetGeometryRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)