pub struct XiPassiveGrabDevice<'a> {
pub time: Timestamp,
pub grab_window: Window,
pub cursor: Cursor,
pub detail: u32,
pub device: Device,
pub grab_type: GrabType,
pub grab_mode: GrabMode22,
pub paired_device_mode: GrabMode,
pub owner_events: GrabOwner,
pub mask: &'a [u32],
pub modifiers: &'a [u32],
}Expand description
The XiPassiveGrabDevice request.
This request replies XiPassiveGrabDeviceReply.
Associated cookie types are XiPassiveGrabDeviceCookie and XiPassiveGrabDeviceCookieUnchecked.
Fields§
§time: Timestamp§grab_window: Window§cursor: Cursor§detail: u32§device: Device§grab_type: GrabType§grab_mode: GrabMode22§paired_device_mode: GrabMode§owner_events: GrabOwner§mask: &'a [u32]§modifiers: &'a [u32]Trait Implementations§
Source§impl<'a> Clone for XiPassiveGrabDevice<'a>
impl<'a> Clone for XiPassiveGrabDevice<'a>
Source§fn clone(&self) -> XiPassiveGrabDevice<'a>
fn clone(&self) -> XiPassiveGrabDevice<'a>
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<'a> Debug for XiPassiveGrabDevice<'a>
impl<'a> Debug for XiPassiveGrabDevice<'a>
Source§impl<'a> RawRequest for XiPassiveGrabDevice<'a>
impl<'a> RawRequest for XiPassiveGrabDevice<'a>
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<'a> Request for XiPassiveGrabDevice<'a>
impl<'a> Request for XiPassiveGrabDevice<'a>
Source§impl<'a> RequestWithReply for XiPassiveGrabDevice<'a>
impl<'a> RequestWithReply for XiPassiveGrabDevice<'a>
Source§type Reply = XiPassiveGrabDeviceReply
type Reply = XiPassiveGrabDeviceReply
Reply associated with the request
Source§type Cookie = XiPassiveGrabDeviceCookie
type Cookie = XiPassiveGrabDeviceCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = XiPassiveGrabDeviceCookieUnchecked
type CookieUnchecked = XiPassiveGrabDeviceCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl<'a> Freeze for XiPassiveGrabDevice<'a>
impl<'a> RefUnwindSafe for XiPassiveGrabDevice<'a>
impl<'a> Send for XiPassiveGrabDevice<'a>
impl<'a> Sync for XiPassiveGrabDevice<'a>
impl<'a> Unpin for XiPassiveGrabDevice<'a>
impl<'a> UnwindSafe for XiPassiveGrabDevice<'a>
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