pub struct QueryPointerReply {
pub same_screen: bool,
pub sequence: u16,
pub length: u32,
pub root: Window,
pub child: Window,
pub root_x: i16,
pub root_y: i16,
pub win_x: i16,
pub win_y: i16,
pub mask: KeyButMask,
}Expand description
§Fields
same_screen- Ifsame_screenis False, then the pointer is not on the same screen as the argument window,childis None, andwin_xandwin_yare zero. Ifsame_screenis True, thenwin_xandwin_yare the pointer coordinates relative to the argument window’s origin, and child is the child containing the pointer, if any.root- The root window the pointer is logically on.child- The child window containing the pointer, if any, ifsame_screenis true. Ifsame_screenis false,XCB_NONEis returned.root_x- The pointer X position, relative toroot.root_y- The pointer Y position, relative toroot.win_x- The pointer X coordinate, relative tochild, ifsame_screenis true. Zero otherwise.win_y- The pointer Y coordinate, relative tochild, ifsame_screenis true. Zero otherwise.mask- The current logical state of the modifier keys and the buttons. Note that the logical state of a device (as seen by means of the protocol) may lag the physical state if device event processing is frozen.
Fields§
§same_screen: bool§sequence: u16§length: u32§root: Window§child: Window§root_x: i16§root_y: i16§win_x: i16§win_y: i16§mask: KeyButMaskTrait Implementations§
Source§impl Clone for QueryPointerReply
impl Clone for QueryPointerReply
Source§fn clone(&self) -> QueryPointerReply
fn clone(&self) -> QueryPointerReply
Returns a duplicate 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 QueryPointerReply
Available on non-crate feature extra-traits only.
impl Debug for QueryPointerReply
Available on non-crate feature
extra-traits only.Source§impl Default for QueryPointerReply
impl Default for QueryPointerReply
Source§fn default() -> QueryPointerReply
fn default() -> QueryPointerReply
Returns the “default value” for a type. Read more
Source§impl From<QueryPointerReply> for Reply
impl From<QueryPointerReply> for Reply
Source§fn from(reply: QueryPointerReply) -> Reply
fn from(reply: QueryPointerReply) -> Reply
Converts to this type from the input type.
Source§impl Serialize for QueryPointerReply
impl Serialize for QueryPointerReply
Source§impl TryParse for QueryPointerReply
impl TryParse for QueryPointerReply
impl Copy for QueryPointerReply
Auto Trait Implementations§
impl Freeze for QueryPointerReply
impl RefUnwindSafe for QueryPointerReply
impl Send for QueryPointerReply
impl Sync for QueryPointerReply
impl Unpin for QueryPointerReply
impl UnwindSafe for QueryPointerReply
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§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
Source§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<OwnedFd>,
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd>, ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more