1// This trait is made to be generic to allow platform-specific implementations 2// of the serial interface. 3pub trait PlatformSerial<Word>: 4 embedded_hal::serial::Read<Word> + embedded_hal::serial::Write<Word> + core::default::Default 5{ 6}