[][src]Struct lxi::LxiDevice

pub struct LxiDevice<H: LxiHook = LxiTextHook> { /* fields omitted */ }

Abstract LXI device we can connect and read/write data

Methods

impl<H: LxiHook> LxiDevice<H>[src]

pub fn new(addr: (String, u16), timeout: Option<Duration>) -> Self[src]

pub fn address(&self) -> (&str, u16)[src]

pub fn set_timeout(&mut self, timeout: Option<Duration>) -> Result<()>[src]

pub fn timeout(&self) -> Option<Duration>[src]

pub fn is_connected(&self) -> bool[src]

pub fn connect(&mut self) -> Result<()>[src]

pub fn disconnect(&mut self) -> Result<()>[src]

pub fn reconnect(&mut self) -> Result<()>[src]

pub fn send(&mut self, data: &[u8]) -> Result<()>[src]

pub fn receive(&mut self) -> Result<H::Output>[src]

pub fn send_timeout(
    &mut self,
    data: &[u8],
    timeout: Option<Duration>
) -> Result<()>
[src]

pub fn receive_timeout(
    &mut self,
    timeout: Option<Duration>
) -> Result<H::Output>
[src]

Auto Trait Implementations

impl<H> Send for LxiDevice<H> where
    H: Send

impl<H> Sync for LxiDevice<H> where
    H: Sync

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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