[][src]Struct hidapi::HidDevice

pub struct HidDevice { /* fields omitted */ }

Object for accessing HID device

Implementations

impl HidDevice[src]

pub fn check_error(&self) -> HidResult<HidError>[src]

Get the last error, which happened in the underlying hidapi C library.

The Ok() variant of the result will contain a HidError::HidApiError.

When Err() is returned, then acquiring the error string from the hidapi C library failed. The contained HidError is the cause, why no error could be fetched.

pub fn write(&self, data: &[u8]) -> HidResult<usize>[src]

The first byte of data must contain the Report ID. For devices which only support a single report, this must be set to 0x0. The remaining bytes contain the report data. Since the Report ID is mandatory, calls to write() will always contain one more byte than the report contains. For example, if a hid report is 16 bytes long, 17 bytes must be passed to write(), the Report ID (or 0x0, for devices with a single report), followed by the report data (16 bytes). In this example, the length passed in would be 17. write() will send the data on the first OUT endpoint, if one exists. If it does not, it will send the data through the Control Endpoint (Endpoint 0).

pub fn read(&self, buf: &mut [u8]) -> HidResult<usize>[src]

Input reports are returned to the host through the 'INTERRUPT IN' endpoint. The first byte will contain the Report number if the device uses numbered reports.

pub fn read_timeout(&self, buf: &mut [u8], timeout: i32) -> HidResult<usize>[src]

Input reports are returned to the host through the 'INTERRUPT IN' endpoint. The first byte will contain the Report number if the device uses numbered reports. Timeout measured in milliseconds, set -1 for blocking wait.

pub fn send_feature_report(&self, data: &[u8]) -> HidResult<()>[src]

Send a Feature report to the device. Feature reports are sent over the Control endpoint as a Set_Report transfer. The first byte of data must contain the 'Report ID'. For devices which only support a single report, this must be set to 0x0. The remaining bytes contain the report data. Since the 'Report ID' is mandatory, calls to send_feature_report() will always contain one more byte than the report contains. For example, if a hid report is 16 bytes long, 17 bytes must be passed to send_feature_report(): 'the Report ID' (or 0x0, for devices which do not use numbered reports), followed by the report data (16 bytes). In this example, the length passed in would be 17.

pub fn get_feature_report(&self, buf: &mut [u8]) -> HidResult<usize>[src]

Set the first byte of buf to the 'Report ID' of the report to be read. Upon return, the first byte will still contain the Report ID, and the report data will start in buf[1].

pub fn set_blocking_mode(&self, blocking: bool) -> HidResult<()>[src]

Set the device handle to be in blocking or in non-blocking mode. In non-blocking mode calls to read() will return immediately with an empty slice if there is no data to be read. In blocking mode, read() will wait (block) until there is data to read before returning. Modes can be changed at any time.

pub fn get_manufacturer_string(&self) -> HidResult<Option<String>>[src]

Get The Manufacturer String from a HID device.

pub fn get_product_string(&self) -> HidResult<Option<String>>[src]

Get The Manufacturer String from a HID device.

pub fn get_serial_number_string(&self) -> HidResult<Option<String>>[src]

Get The Serial Number String from a HID device.

pub fn get_indexed_string(&self, index: i32) -> HidResult<Option<String>>[src]

Get a string from a HID device, based on its string index.

Trait Implementations

impl Drop for HidDevice[src]

impl Send for HidDevice[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.