pub trait AsyncMinitelReadWriteBaudrate: AsyncMinitelReadWrite + AsyncMinitelBaudrateControl {
// Provided methods
async fn search_speed(&mut self) -> Result<Baudrate> { ... }
fn get_speed_blocking(&mut self) -> Result<Baudrate> { ... }
async fn set_speed(&mut self, baudrate: Baudrate) -> Result<Baudrate> { ... }
}Expand description
Ability to communicate with a minitel through a serial port with baudrate control
Provided Methods§
async fn search_speed(&mut self) -> Result<Baudrate>
fn get_speed_blocking(&mut self) -> Result<Baudrate>
async fn set_speed(&mut self, baudrate: Baudrate) -> Result<Baudrate>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.