pub struct GetDeviceProperty {
pub property: Atom,
pub type: Atom,
pub offset: u32,
pub len: u32,
pub device_id: u8,
pub delete: bool,
}Expand description
The GetDeviceProperty request.
This request replies GetDevicePropertyReply.
Associated cookie types are GetDevicePropertyCookie and GetDevicePropertyCookieUnchecked.
Fields§
§property: Atom§type: Atom§offset: u32§len: u32§device_id: u8§delete: boolTrait Implementations§
Source§impl Clone for GetDeviceProperty
impl Clone for GetDeviceProperty
Source§fn clone(&self) -> GetDeviceProperty
fn clone(&self) -> GetDeviceProperty
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 GetDeviceProperty
impl Debug for GetDeviceProperty
Source§impl RawRequest for GetDeviceProperty
impl RawRequest for GetDeviceProperty
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 GetDeviceProperty
impl Request for GetDeviceProperty
Source§impl RequestWithReply for GetDeviceProperty
impl RequestWithReply for GetDeviceProperty
Source§type Reply = GetDevicePropertyReply
type Reply = GetDevicePropertyReply
Reply associated with the request
Source§type Cookie = GetDevicePropertyCookie
type Cookie = GetDevicePropertyCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = GetDevicePropertyCookieUnchecked
type CookieUnchecked = GetDevicePropertyCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for GetDeviceProperty
impl RefUnwindSafe for GetDeviceProperty
impl Send for GetDeviceProperty
impl Sync for GetDeviceProperty
impl Unpin for GetDeviceProperty
impl UnwindSafe for GetDeviceProperty
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