pub trait InputPin: Pin + Into<AnyInputPin> {
    // Provided method
    fn downgrade_input(self) -> AnyInputPin { ... }
}
Expand description

A marker trait designating a pin which is capable of operating as an input pin

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§