[][src]Struct nrf52832_hal::gpio::p0::P0_00

pub struct P0_00<MODE> { /* fields omitted */ }

Methods

impl<MODE> P0_00<MODE>[src]

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

Convert the pin to be a floating input

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

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

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

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

pub fn into_open_drain_output(
    self,
    config: OpenDrainConfig,
    initial_output: Level
) -> P0_00<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.

pub fn degrade(self) -> Pin<MODE>[src]

Degrade to a generic pin struct, which can be used with peripherals

Trait Implementations

impl<MODE> StatefulOutputPin for P0_00<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 P0_00<Input<MODE>>[src]

impl<MODE> OutputPin for P0_00<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 P0_00<MODE> where
    MODE: Send

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

Blanket Implementations

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> From for T[src]

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