pub trait GpioExt {
    type Parts;

    // Required method
    fn split(self) -> Self::Parts;
}
Expand description

Extension trait to split a GPIO peripheral in independent pins and registers

Required Associated Types§

source

type Parts

The parts to split the GPIO into

Required Methods§

source

fn split(self) -> Self::Parts

Splits the GPIO block into independent pins and registers

Implementors§