pub trait HrPwmAdvExt: Sized {
type PreloadSource;
// Required method
fn pwm_advanced<PINS>(
self,
_pins: PINS,
) -> HrPwmBuilder<Self, PsclDefault, Self::PreloadSource, PINS>
where PINS: ToHrOut<Self>;
}
Required Associated Types§
type PreloadSource
Required Methods§
fn pwm_advanced<PINS>(
self,
_pins: PINS,
) -> HrPwmBuilder<Self, PsclDefault, Self::PreloadSource, PINS>where
PINS: ToHrOut<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.