[][src]Trait circuit_playground_express::gpio::GpioExt

pub trait GpioExt {
    type Parts;
    fn split(self) -> Self::Parts;
}

The GpioExt trait allows splitting the PORT hardware into its constituent pin parts.

Associated Types

type Parts

Loading content...

Required methods

fn split(self) -> Self::Parts

Consume and split the device into its constitent parts

Loading content...

Implementors

impl GpioExt for PORT[src]

type Parts = Parts

fn split(self) -> Parts[src]

Split the PORT peripheral into discrete pins

Loading content...