pub trait PwmExt1: Sized {
// Required method
fn pwm<PINS>(
self,
_: PINS,
frequency: Hertz,
clocks: Clocks,
apb: &mut APB2,
) -> PINS::Channels
where PINS: Pins<Self>;
}Required Methods§
fn pwm<PINS>(
self,
_: PINS,
frequency: Hertz,
clocks: Clocks,
apb: &mut APB2,
) -> PINS::Channelswhere
PINS: Pins<Self>,
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.