pub trait QeiExt: Sized + Instance {
// Required method
fn qei(
self,
pins: (impl Into<<Self as CPin<0>>::Ch<PushPull>>, impl Into<<Self as CPin<1>>::Ch<PushPull>>),
) -> Qei<Self>;
}
Required Methods§
fn qei( self, pins: (impl Into<<Self as CPin<0>>::Ch<PushPull>>, impl Into<<Self as CPin<1>>::Ch<PushPull>>), ) -> Qei<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.