_embedded_hal_serial_Read

Trait _embedded_hal_serial_Read 

Source
pub trait _embedded_hal_serial_Read<Word> {
    type Error;

    // Required method
    fn read(&mut self) -> Result<Word, Error<Self::Error>>;
}
Expand description

Read half of a serial interface

Some serial interfaces support different data sizes (8 bits, 9 bits, etc.); This can be encoded in this trait via the Word type parameter.

Required Associated Types§

Source

type Error

Read error

Required Methods§

Source

fn read(&mut self) -> Result<Word, Error<Self::Error>>

Reads a single word from the serial interface

Implementors§

Source§

impl<Config> Read<u8> for Rx<LPUART, Config>

Source§

impl<Config> Read<u8> for Rx<USART1, Config>

Source§

impl<Config> Read<u8> for Rx<USART2, Config>

Source§

impl<Config> Read<u8> for Rx<USART3, Config>

Source§

impl<Config> Read<u8> for Rx<USART4, Config>

Source§

impl<Config> Read<u8> for Serial<LPUART, Config>

Source§

impl<Config> Read<u8> for Serial<USART1, Config>

Source§

impl<Config> Read<u8> for Serial<USART2, Config>

Source§

impl<Config> Read<u8> for Serial<USART3, Config>

Source§

impl<Config> Read<u8> for Serial<USART4, Config>