pub trait UartInit<U> {
// Required method
fn init<OS: OsInterface>(self, mcu: &mut Mcu) -> Uart<OS, U>;
}Required Methods§
fn init<OS: OsInterface>(self, mcu: &mut Mcu) -> Uart<OS, U>
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.