#[repr(C)]pub struct hid_device_info {
pub path: *mut c_char,
pub vendor_id: c_ushort,
pub product_id: c_ushort,
pub serial_number: *mut wchar_t,
pub release_number: c_ushort,
pub manufacturer_string: *mut wchar_t,
pub product_string: *mut wchar_t,
pub usage_page: c_ushort,
pub usage: c_ushort,
pub interface_number: c_int,
pub next: *mut hid_device_info,
}Fields§
§path: *mut c_char§vendor_id: c_ushort§product_id: c_ushort§serial_number: *mut wchar_t§release_number: c_ushort§manufacturer_string: *mut wchar_t§product_string: *mut wchar_t§usage_page: c_ushort§usage: c_ushort§interface_number: c_int§next: *mut hid_device_infoAuto Trait Implementations§
impl Freeze for hid_device_info
impl RefUnwindSafe for hid_device_info
impl !Send for hid_device_info
impl !Sync for hid_device_info
impl Unpin for hid_device_info
impl UnwindSafe for hid_device_info
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