Struct x11rb_protocol::protocol::xproto::QueryPointerReply
source · [−]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: u16,
}
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: Window
child: Window
root_x: i16
root_y: i16
win_x: i16
win_y: i16
mask: u16
Trait Implementations
sourceimpl Clone for QueryPointerReply
impl Clone for QueryPointerReply
sourcefn clone(&self) -> QueryPointerReply
fn clone(&self) -> QueryPointerReply
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 QueryPointerReply
impl Debug for QueryPointerReply
sourceimpl Default for QueryPointerReply
impl Default for QueryPointerReply
sourcefn default() -> QueryPointerReply
fn default() -> QueryPointerReply
Returns the “default value” for a type. Read more
sourceimpl From<QueryPointerReply> for Reply
impl From<QueryPointerReply> for Reply
sourcefn from(reply: QueryPointerReply) -> Reply
fn from(reply: QueryPointerReply) -> Reply
Converts to this type from the input type.
sourceimpl Hash for QueryPointerReply
impl Hash for QueryPointerReply
sourceimpl Ord for QueryPointerReply
impl Ord for QueryPointerReply
sourceimpl PartialEq<QueryPointerReply> for QueryPointerReply
impl PartialEq<QueryPointerReply> for QueryPointerReply
sourcefn eq(&self, other: &QueryPointerReply) -> bool
fn eq(&self, other: &QueryPointerReply) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &QueryPointerReply) -> bool
fn ne(&self, other: &QueryPointerReply) -> bool
This method tests for !=
.
sourceimpl PartialOrd<QueryPointerReply> for QueryPointerReply
impl PartialOrd<QueryPointerReply> for QueryPointerReply
sourcefn partial_cmp(&self, other: &QueryPointerReply) -> Option<Ordering>
fn partial_cmp(&self, other: &QueryPointerReply) -> 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 TryParse for QueryPointerReply
impl TryParse for QueryPointerReply
impl Copy for QueryPointerReply
impl Eq for QueryPointerReply
impl StructuralEq for QueryPointerReply
impl StructuralPartialEq for QueryPointerReply
Auto Trait Implementations
impl RefUnwindSafe for QueryPointerReply
impl Send for QueryPointerReply
impl Sync for QueryPointerReply
impl Unpin for QueryPointerReply
impl UnwindSafe for QueryPointerReply
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