pub struct GrabDevice<'a> {
pub grab_window: Window,
pub time: Timestamp,
pub this_device_mode: GrabMode,
pub other_device_mode: GrabMode,
pub owner_events: bool,
pub device_id: u8,
pub classes: &'a [EventClass],
}Expand description
The GrabDevice request.
This request replies GrabDeviceReply.
Associated cookie types are GrabDeviceCookie and GrabDeviceCookieUnchecked.
Fields§
§grab_window: Window§time: Timestamp§this_device_mode: GrabMode§other_device_mode: GrabMode§owner_events: bool§device_id: u8§classes: &'a [EventClass]Trait Implementations§
Source§impl<'a> Clone for GrabDevice<'a>
impl<'a> Clone for GrabDevice<'a>
Source§fn clone(&self) -> GrabDevice<'a>
fn clone(&self) -> GrabDevice<'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 GrabDevice<'a>
impl<'a> Debug for GrabDevice<'a>
Source§impl<'a> RawRequest for GrabDevice<'a>
impl<'a> RawRequest for GrabDevice<'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 GrabDevice<'a>
impl<'a> Request for GrabDevice<'a>
Source§impl<'a> RequestWithReply for GrabDevice<'a>
impl<'a> RequestWithReply for GrabDevice<'a>
Source§type Reply = GrabDeviceReply
type Reply = GrabDeviceReply
Reply associated with the request
Source§type Cookie = GrabDeviceCookie
type Cookie = GrabDeviceCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = GrabDeviceCookieUnchecked
type CookieUnchecked = GrabDeviceCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl<'a> Freeze for GrabDevice<'a>
impl<'a> RefUnwindSafe for GrabDevice<'a>
impl<'a> Send for GrabDevice<'a>
impl<'a> Sync for GrabDevice<'a>
impl<'a> Unpin for GrabDevice<'a>
impl<'a> UnwindSafe for GrabDevice<'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