[][src]Trait atsam4_hal::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 Ports[src]

type Parts = Pins

fn split(self) -> Pins[src]

Split the PORT peripheral into discrete pins

Loading content...