pub struct ChangePointerDevice {
pub x_axis: u8,
pub y_axis: u8,
pub device_id: u8,
}Expand description
The ChangePointerDevice request.
This request replies ChangePointerDeviceReply.
Associated cookie types are ChangePointerDeviceCookie and ChangePointerDeviceCookieUnchecked.
Fields§
§x_axis: u8§y_axis: u8§device_id: u8Trait Implementations§
Source§impl Clone for ChangePointerDevice
impl Clone for ChangePointerDevice
Source§fn clone(&self) -> ChangePointerDevice
fn clone(&self) -> ChangePointerDevice
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 ChangePointerDevice
impl Debug for ChangePointerDevice
Source§impl RawRequest for ChangePointerDevice
impl RawRequest for ChangePointerDevice
Source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
Actual implementation of the request sending Read more
Source§impl Request for ChangePointerDevice
impl Request for ChangePointerDevice
Source§impl RequestWithReply for ChangePointerDevice
impl RequestWithReply for ChangePointerDevice
Source§type Reply = ChangePointerDeviceReply
type Reply = ChangePointerDeviceReply
Reply associated with the request
Source§type Cookie = ChangePointerDeviceCookie
type Cookie = ChangePointerDeviceCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = ChangePointerDeviceCookieUnchecked
type CookieUnchecked = ChangePointerDeviceCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for ChangePointerDevice
impl RefUnwindSafe for ChangePointerDevice
impl Send for ChangePointerDevice
impl Sync for ChangePointerDevice
impl Unpin for ChangePointerDevice
impl UnwindSafe for ChangePointerDevice
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