Struct xio_hwdb::FtdiDescription[][src]

pub struct FtdiDescription {
    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,
}

The description of a connected device recognized by FTDI chip.

Fields

The string identifier stored in the FTDI EEPROM.

The vendor string stored in the FTDI EEPROM.

The product string stored in the FTDI EEPROM.

The uuid stored in the FTDI EEPROM.

A flag indicating if the device is recognized.

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

Board identifier string.

Device path.

Named symlink to the device.

Trait Implementations

impl Clone for FtdiDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FtdiDescription
[src]

Formats the value using the given formatter. Read more

impl PartialEq for FtdiDescription
[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