Struct xio_hwdb::XioDescription[][src]

pub struct XioDescription {
    pub id: String,
    pub vendor: String,
    pub product: String,
    pub uuid: Uuid,
    pub recognized: bool,
    pub programmed: bool,
    pub board: String,
    pub device: String,
    pub symlink: String,
    pub version: String,
}

The description of a connected device recognized through USB.

Fields

Id of the device.

USB vendor string of the device.

USB product string of the device.

Device uuid.

Flag indicating if the device is recognized.

Flag indicating if the device is programmed (a.k.a. flashed).

Board identifier string.

Device path.

Named symlink to the device.

Version string of the firmware running on the device.

Trait Implementations

impl Clone for XioDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for XioDescription
[src]

Formats the value using the given formatter. Read more

impl PartialEq for XioDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations