Struct xcb::x::GetGeometryReply
source · pub struct GetGeometryReply { /* private fields */ }
Implementations§
source§impl GetGeometryReply
impl GetGeometryReply
pub fn response_type(&self) -> u8
pub fn sequence(&self) -> u16
pub fn length(&self) -> u32
sourcepub fn x(&self) -> i16
pub fn x(&self) -> i16
The X coordinate of drawable
. If drawable
is a window, the coordinate
specifies the upper-left outer corner relative to its parent’s origin. If
drawable
is a pixmap, the X coordinate is always 0.
sourcepub fn y(&self) -> i16
pub fn y(&self) -> i16
The Y coordinate of drawable
. If drawable
is a window, the coordinate
specifies the upper-left outer corner relative to its parent’s origin. If
drawable
is a pixmap, the Y coordinate is always 0.
sourcepub fn border_width(&self) -> u16
pub fn border_width(&self) -> u16
The border width (in pixels).
Trait Implementations§
source§impl Debug for GetGeometryReply
impl Debug for GetGeometryReply
source§impl Drop for GetGeometryReply
impl Drop for GetGeometryReply
source§impl Reply for GetGeometryReply
impl Reply for GetGeometryReply
impl Send for GetGeometryReply
impl Sync for GetGeometryReply
Auto Trait Implementations§
impl Freeze for GetGeometryReply
impl RefUnwindSafe for GetGeometryReply
impl Unpin for GetGeometryReply
impl UnwindSafe for GetGeometryReply
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