Struct QueryPointerReply
pub struct QueryPointerReply {
pub same_screen: bool,
pub sequence: u16,
pub length: u32,
pub root: u32,
pub child: u32,
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_screen
is False, then the pointer is not on the same screen as the argument window,child
is None, andwin_x
andwin_y
are zero. Ifsame_screen
is True, thenwin_x
andwin_y
are 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_screen
is true. Ifsame_screen
is false,XCB_NONE
is 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_screen
is true. Zero otherwise.win_y
- The pointer Y coordinate, relative tochild
, ifsame_screen
is 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: u32
§child: u32
§root_x: i16
§root_y: i16
§win_x: i16
§win_y: i16
§mask: KeyButMask
Trait Implementations§
§impl Clone for QueryPointerReply
impl Clone for QueryPointerReply
§fn clone(&self) -> QueryPointerReply
fn clone(&self) -> QueryPointerReply
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 QueryPointerReply
impl Debug for QueryPointerReply
§impl Default for QueryPointerReply
impl Default for QueryPointerReply
§fn default() -> QueryPointerReply
fn default() -> QueryPointerReply
Returns the “default value” for a type. Read more
§impl From<QueryPointerReply> for Reply
impl From<QueryPointerReply> for Reply
§fn from(reply: QueryPointerReply) -> Reply
fn from(reply: QueryPointerReply) -> Reply
Converts to this type from the input type.
§impl Serialize for QueryPointerReply
impl Serialize for QueryPointerReply
§impl TryParse for QueryPointerReply
impl TryParse for QueryPointerReply
§fn try_parse(
initial_value: &[u8],
) -> Result<(QueryPointerReply, &[u8]), ParseError>
fn try_parse( initial_value: &[u8], ) -> Result<(QueryPointerReply, &[u8]), ParseError>
Try to parse the given values into an instance of this type. Read more
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§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
)§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
§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