Struct x11rb::protocol::xproto::QueryPointerRequest
source · pub struct QueryPointerRequest {
pub window: u32,
}
Expand description
get pointer coordinates.
Gets the root window the pointer is logically on and the pointer coordinates relative to the root window’s origin.
§Fields
window
- A window to check if the pointer is on the same screen aswindow
(see thesame_screen
field in the reply).
§Errors
Window
- The specifiedwindow
does not exist.
Fields§
§window: u32
Implementations§
Trait Implementations§
source§impl Clone for QueryPointerRequest
impl Clone for QueryPointerRequest
source§fn clone(&self) -> QueryPointerRequest
fn clone(&self) -> QueryPointerRequest
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 moresource§impl Debug for QueryPointerRequest
impl Debug for QueryPointerRequest
source§impl Default for QueryPointerRequest
impl Default for QueryPointerRequest
source§fn default() -> QueryPointerRequest
fn default() -> QueryPointerRequest
Returns the “default value” for a type. Read more
source§impl ReplyRequest for QueryPointerRequest
impl ReplyRequest for QueryPointerRequest
§type Reply = QueryPointerReply
type Reply = QueryPointerReply
The kind of reply that this request generates.
source§impl Request for QueryPointerRequest
impl Request for QueryPointerRequest
impl Copy for QueryPointerRequest
Auto Trait Implementations§
impl Freeze for QueryPointerRequest
impl RefUnwindSafe for QueryPointerRequest
impl Send for QueryPointerRequest
impl Sync for QueryPointerRequest
impl Unpin for QueryPointerRequest
impl UnwindSafe for QueryPointerRequest
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