Trait PwmExt

Source
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§

Source

fn pwm<PINS, T>(self, _: PINS, frequency: T, rcc: &mut Rcc) -> PINS::Channels
where PINS: Pins<Self>, T: Into<Hertz>,

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§