[][src]Struct nrf52832_hal::gpio::Pin

pub struct Pin<MODE> {
    pub pin: u8,
    // some fields omitted
}

Generic $PX pin

Fields

pin: u8

Methods

impl<MODE> Pin<MODE>[src]

pub fn into_floating_input(self) -> Pin<Input<Floating>>[src]

Convert the pin to be a floating input

pub fn into_pullup_input(self) -> Pin<Input<PullUp>>[src]

pub fn into_pulldown_input(self) -> Pin<Input<PullDown>>[src]

pub fn into_push_pull_output(
    self,
    initial_output: Level
) -> Pin<Output<PushPull>>
[src]

Convert the pin to be a push-pull output with normal drive

pub fn into_open_drain_output(
    self,
    config: OpenDrainConfig,
    initial_output: Level
) -> Pin<Output<OpenDrain>>
[src]

Convert the pin to be an open-drain output

This method currently does not support configuring an internal pull-up or pull-down resistor.

Trait Implementations

impl<MODE> StatefulOutputPin for Pin<Output<MODE>>[src]

fn is_set_high(&self) -> bool[src]

Is the output pin set as high?

fn is_set_low(&self) -> bool[src]

Is the output pin set as low?

impl<MODE> InputPin for Pin<Input<MODE>>[src]

impl<MODE> OutputPin for Pin<Output<MODE>>[src]

fn set_high(&mut self)[src]

Set the output as high

fn set_low(&mut self)[src]

Set the output as low

Auto Trait Implementations

impl<MODE> Send for Pin<MODE> where
    MODE: Send

impl<MODE> Sync for Pin<MODE> where
    MODE: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self