[][src]Trait embedded_platform::gpio::IntoFloatingInputPin

pub trait IntoFloatingInputPin: Pin {
    type FloatingInputPin: InputPin<Error = Self::Error> + Unpin;
    fn into_floating_input_pin(
        self
    ) -> Result<Self::FloatingInputPin, Self::Error>; }

A pin that can be turned into an InputPin that does not employ any pull-up or pull-down resistors.

Associated Types

type FloatingInputPin: InputPin<Error = Self::Error> + Unpin

The type of an InputPin that does not employ any pull-up or pull-down resistors.

Loading content...

Required methods

fn into_floating_input_pin(self) -> Result<Self::FloatingInputPin, Self::Error>

Attempts to re-configure this pin into the new mode.

Loading content...

Implementors

impl IntoFloatingInputPin for NoConnect[src]

Loading content...