#[repr(C)]pub struct XINPUT_CAPABILITIES_EX {
pub capabilities: XINPUT_CAPABILITIES,
pub vendor_id: WORD,
pub product_id: WORD,
pub revision_id: WORD,
pub a4: DWORD,
}Expand description
Capabilities info from the undocumented XInputGetCapabilitiesEx fn.
Fields§
§capabilities: XINPUT_CAPABILITIESThe wrapped “basic capabilities” value
vendor_id: WORDUSB Vendor ID of the attached controller
product_id: WORDUSB Product ID of the attached controller
revision_id: WORDUSB Revision ID of the attached controller
a4: DWORDunknown use
Trait Implementations§
Source§impl Clone for XINPUT_CAPABILITIES_EX
impl Clone for XINPUT_CAPABILITIES_EX
Source§fn clone(&self) -> XINPUT_CAPABILITIES_EX
fn clone(&self) -> XINPUT_CAPABILITIES_EX
Returns a duplicate 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 XINPUT_CAPABILITIES_EX
impl Debug for XINPUT_CAPABILITIES_EX
impl Copy for XINPUT_CAPABILITIES_EX
Auto Trait Implementations§
impl Freeze for XINPUT_CAPABILITIES_EX
impl RefUnwindSafe for XINPUT_CAPABILITIES_EX
impl Send for XINPUT_CAPABILITIES_EX
impl Sync for XINPUT_CAPABILITIES_EX
impl Unpin for XINPUT_CAPABILITIES_EX
impl UnwindSafe for XINPUT_CAPABILITIES_EX
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