[][src]Struct ftdi2::Context

pub struct Context(_);

Implementations

impl Context[src]

pub fn new() -> Result<Self, FtdiError>[src]

pub fn usb_find_all(
    &self,
    vendor: i32,
    product: i32
) -> Result<Vec<DiscoveredDevice>, FtdiError>
[src]

pub fn read_data_set_chunksize(&mut self, size: u32) -> Result<Self, FtdiError>[src]

pub fn read_data_get_chunksize(&self, size: u32) -> Result<Self, FtdiError>[src]

pub fn write_data_set_chunksize(&mut self, size: u32) -> Result<Self, FtdiError>[src]

pub fn write_data_get_chunksize(&self, size: u32) -> Result<Self, FtdiError>[src]

pub fn open(self, device: &DiscoveredDevice) -> Result<Device, FtdiError>[src]

pub fn get_info(
    &self,
    device: &DiscoveredDevice
) -> Result<DeviceInfo, FtdiError>
[src]

Trait Implementations

impl Debug for Context[src]

impl Drop for Context[src]

Auto Trait Implementations

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.