pub trait UartRecv {
    fn recv(uart: &mut Uart<'_>) -> Self;
}
Expand description

A type that can be retrieved through Uart::recv().

You can implement it for your types to make tests more readable.

Required Methods

Implementations on Foreign Types

Implementors