pub trait PwmExt: Sized {
// Required method
fn pwm<PINS, T>(
self,
_: PINS,
frequency: T,
rcc: &mut Rcc,
) -> PINS::Channels
where PINS: Pins<Self>,
T: Into<Hertz>;
}
Required Methods§
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.