[][src]Struct libftd2xx::Ft232h

pub struct Ft232h { /* fields omitted */ }

FT232H device.

Example

use std::convert::TryFrom;
use libftd2xx::{Ftdi, Ft232h};

let mut ftdi = Ftdi::new()?;
let ft232h: Ft232h = Ft232h::try_from(&mut ftdi)?;

Implementations

impl Ft232h[src]

pub const DEVICE_TYPE: DeviceType[src]

FTDI device type.

Trait Implementations

impl FtdiCommon for Ft232h[src]

impl FtdiEeprom for Ft232h[src]

type Eeprom = Eeprom232h

EEPROM data structure for the specific device.

impl<'_> TryFrom<&'_ mut Ftdi> for Ft232h[src]

type Error = DeviceTypeError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Ft232h

impl !Send for Ft232h

impl !Sync for Ft232h

impl Unpin for Ft232h

impl UnwindSafe for Ft232h

Blanket Implementations

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

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

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

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

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

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.