Trait AsyncMinitelReadWriteBaudrate

Source
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§

Source

async fn search_speed(&mut self) -> Result<Baudrate>

Source

fn get_speed_blocking(&mut self) -> Result<Baudrate>

Source

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.

Implementors§