pub struct GetDeviceInfoReply {
Show 17 fields pub device_id: u8, pub sequence: u16, pub length: u32, pub present: XIFeature, pub supported: XIFeature, pub unsupported: XIFeature, pub first_btn_wanted: u8, pub n_btns_wanted: u8, pub first_btn_rtrn: u8, pub total_btns: u8, pub has_own_state: bool, pub dflt_kbd_fb: u16, pub dflt_led_fb: u16, pub dev_type: Atom, pub name: Vec<String8>, pub btn_actions: Vec<Action>, pub leds: Vec<DeviceLedInfo>,
}

Fields§

§device_id: u8§sequence: u16§length: u32§present: XIFeature§supported: XIFeature§unsupported: XIFeature§first_btn_wanted: u8§n_btns_wanted: u8§first_btn_rtrn: u8§total_btns: u8§has_own_state: bool§dflt_kbd_fb: u16§dflt_led_fb: u16§dev_type: Atom§name: Vec<String8>§btn_actions: Vec<Action>§leds: Vec<DeviceLedInfo>

Implementations§

source§

impl GetDeviceInfoReply

source

pub fn n_device_led_f_bs(&self) -> u16

Get the value of the nDeviceLedFBs field.

The nDeviceLedFBs field is used as the length field of the leds field. This function computes the field’s value again based on the length of the list.

Panics

Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.

source

pub fn n_btns_rtrn(&self) -> u8

Get the value of the nBtnsRtrn field.

The nBtnsRtrn field is used as the length field of the btnActions field. This function computes the field’s value again based on the length of the list.

Panics

Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.

source

pub fn name_len(&self) -> u16

Get the value of the nameLen field.

The nameLen field is used as the length field of the name field. This function computes the field’s value again based on the length of the list.

Panics

Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.

Trait Implementations§

source§

impl Clone for GetDeviceInfoReply

source§

fn clone(&self) -> GetDeviceInfoReply

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GetDeviceInfoReply

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for GetDeviceInfoReply

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<GetDeviceInfoReply> for Reply

source§

fn from(reply: GetDeviceInfoReply) -> Reply

Converts to this type from the input type.
source§

impl Serialize for GetDeviceInfoReply

§

type Bytes = Vec<u8>

The value returned by serialize. Read more
source§

fn serialize(&self) -> Vec<u8>

Serialize this value into X11 raw bytes.
source§

fn serialize_into(&self, bytes: &mut Vec<u8>)

Serialize this value into X11 raw bytes, appending the result into bytes. Read more
source§

impl Serialize for GetDeviceInfoReply

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryParse for GetDeviceInfoReply

source§

fn try_parse(initial_value: &[u8]) -> Result<(Self, &[u8]), ParseError>

Try to parse the given values into an instance of this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> TryParseFd for T
where T: TryParse,

source§

fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd> ) -> Result<(T, &'a [u8]), ParseError>

Try to parse the given values into an instance of this type. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,