atsamd_hal::prelude

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<C, D> Read<<C as AnyConfig>::Word> for Uart<C, D>

Source§

impl<P, L> Read<<L as Length>::Word> for Spi<Config<P, Slave, L>, Rx>

Implement [serial::Read] for Rx Spi structs in Slave OpMode

Refer to the ehal_nb::serial::Read implementation of Spi for more details.

Source§

impl<P, M, L> Read<<L as Length>::Word> for Spi<Config<P, M, L>, Rx>

Implement [serial::Read] for Rx Spi structs in a MasterMode

Refer to the ehal_nb::serial::Read implementation of Spi for more details.