Trait autd3_core::link::Link [−][src]
pub trait Link: Send { fn open(&mut self) -> Result<()>; fn close(&mut self) -> Result<()>; fn send(&mut self, data: &[u8]) -> Result<bool>; fn read(&mut self, data: &mut [u8]) -> Result<bool>; fn is_open(&self) -> bool; }
Expand description
Link is a interface to the AUTD device.