Trait BaudPeriph

Source
pub trait BaudPeriph {
    // Required method
    fn baud(clock_cfg: &Clocks) -> u32;
}
Expand description

Uart only. Important: This assumes we use the default UART clock.

Required Methods§

Source

fn baud(clock_cfg: &Clocks) -> u32

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.

Implementors§