pub trait PwmInputExt: Sized + Instance {
// Required method
fn pwm_input(
self,
pins: (impl RInto<<Self as TimC<0>>::In, 0>, impl RInto<<Self as TimC<1>>::In, 0>),
dbg: &mut DBG,
mode: Configuration,
rcc: &mut Rcc,
) -> PwmInput<Self>;
}
Required Methods§
fn pwm_input( self, pins: (impl RInto<<Self as TimC<0>>::In, 0>, impl RInto<<Self as TimC<1>>::In, 0>), dbg: &mut DBG, mode: Configuration, rcc: &mut Rcc, ) -> PwmInput<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.