[][src]Struct xio_hwdb::FtdiDescription

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

id: String

The string identifier stored in the FTDI EEPROM.

vendor: String

The vendor string stored in the FTDI EEPROM.

product: String

The product string stored in the FTDI EEPROM.

uuid: Uuid

The uuid stored in the FTDI EEPROM.

recognized: bool

A flag indicating if the device is recognized.

programmed: bool

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

board: String

Board identifier string.

device: String

Device path.

symlink: String

Named symlink to the device.

Trait Implementations

impl Clone for FtdiDescription[src]

impl PartialEq<FtdiDescription> for FtdiDescription[src]

impl Debug for FtdiDescription[src]

impl<'de> Deserialize<'de> for FtdiDescription[src]

impl Serialize for FtdiDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> PathLoad for T where
    T: DeserializeOwned
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err