Struct microbit::hal::gpio::p0::P0_10[][src]

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

Implementations

impl<MODE> P0_10<MODE>[src]

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

Convert the pin to be a floating input

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

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

pub fn into_push_pull_output(
    self,
    initial_output: Level
) -> P0_10<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_10<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 into_disconnected(self) -> P0_10<Disconnected>[src]

Disconnects the pin.

In disconnected mode the pin cannot be used as input or output. It is primarily useful to reduce power usage.

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

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

Trait Implementations

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

type Error = Void

Error type

pub fn is_high(&self) -> Result<bool, <P0_10<Input<MODE>> as InputPin>::Error>[src]

Is the input pin high?

pub fn is_low(&self) -> Result<bool, <P0_10<Input<MODE>> as InputPin>::Error>[src]

Is the input pin low?

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

pub fn set_high(
    &mut self
) -> Result<(), <P0_10<Output<MODE>> as OutputPin>::Error>
[src]

Set the output as high

pub fn set_low(
    &mut self
) -> Result<(), <P0_10<Output<MODE>> as OutputPin>::Error>
[src]

Set the output as low

type Error = Void

Error type

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

pub fn is_set_high(
    &self
) -> Result<bool, <P0_10<Output<MODE>> as OutputPin>::Error>
[src]

Is the output pin set as high?

pub fn is_set_low(
    &self
) -> Result<bool, <P0_10<Output<MODE>> as OutputPin>::Error>
[src]

Is the output pin set as low?

Auto Trait Implementations

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

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

impl<MODE> Unpin for P0_10<MODE> where
    MODE: Unpin

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Az for T[src]

pub fn az<Dst>(self) -> Dst where
    T: Cast<Dst>, 
[src]

Casts the value.

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> CheckedAs for T[src]

pub fn checked_as<Dst>(self) -> Option<Dst> where
    T: CheckedCast<Dst>, 
[src]

Casts the value.

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

pub fn lossless_try_into(self) -> Option<Dst>[src]

Performs the conversion.

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

pub fn lossy_into(self) -> Dst[src]

Performs the conversion.

impl<T> OverflowingAs for T[src]

pub fn overflowing_as<Dst>(self) -> (Dst, bool) where
    T: OverflowingCast<Dst>, 
[src]

Casts the value.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatingAs for T[src]

pub fn saturating_as<Dst>(self) -> Dst where
    T: SaturatingCast<Dst>, 
[src]

Casts the value.

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

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> UnwrappedAs for T[src]

pub fn unwrapped_as<Dst>(self) -> Dst where
    T: UnwrappedCast<Dst>, 
[src]

Casts the value.

impl<T> WrappingAs for T[src]

pub fn wrapping_as<Dst>(self) -> Dst where
    T: WrappingCast<Dst>, 
[src]

Casts the value.