Struct lpc55_hal::peripherals::gpio::Gpio[][src]

pub struct Gpio<State = Unknown> {
    pub _state: State,
    // some fields omitted
}

Fields

_state: State

Implementations

impl Gpio[src]

pub unsafe fn steal() -> Self[src]

impl<State> Gpio<State>[src]

pub fn release(self) -> GPIO[src]

impl Gpio[src]

pub fn enabled(self, syscon: &mut Syscon) -> Gpio<Enabled>[src]

Consumes disabled Gpio, returns an enabled one

pub fn disabled(self, syscon: &mut Syscon) -> Gpio<Disabled>[src]

Consumes enabled Gpio, returns a disabled one

Trait Implementations

impl From<GPIO> for Gpio[src]

Auto Trait Implementations

impl<State> Send for Gpio<State> where
    State: Send

impl<State = Unknown> !Sync for Gpio<State>

impl<State> Unpin for Gpio<State> where
    State: Unpin

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

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.