Trait autd3_core::link::Link

source ·
pub trait Link: Send {
    fn open<T: Transducer>(&mut self, geometry: &Geometry<T>) -> 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§