Trait autd3_core::link::Link[][src]

pub trait Link: Send {
    fn open(&mut self) -> Result<()>;
fn close(&mut self) -> Result<()>;
fn send(&mut self, tx: &TxDatagram) -> Result<bool>;
fn receive(&mut self, rx: &mut RxDatagram) -> Result<bool>;
fn is_open(&self) -> bool; }
Expand description

Link is a interface to the AUTD device.

Required methods

Implementors