pub struct DeviceInfo {
    pub vendor_id: u16,
    pub product_id: u16,
    pub manufacturer_name: String,
    pub device_name: String,
    pub device_id: DeviceID,
    pub device_type: DeviceType,
}
Expand description

The core DeviceInfo struct which contains all the interesting information for a particular device. This is for use internally and should be ignored if you’re trying to use it when trying to interact with the SDK using the wrapper

Fields

vendor_id: u16

Device Vendor ID vid

product_id: u16

Device Product ID pid

manufacturer_name: String

Device Manufacturer name

device_name: String

Device name

device_id: DeviceID

Unique device ID, which should be generated using generate_device_id

device_type: DeviceType

Hardware type of the Device

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.