Trait kea_hal::HALExt[][src]

pub trait HALExt {
    type T;
    fn split(self) -> Self::T;
}
Expand description

This trait implements split method onto PAC peripheral structs.

Associated Types

The HAL interface struct

Required methods

Consume the PAC struct, split it into reasonable parts, and return them in an interface struct.

Each HAL module implements user friendly interface methods onto the the returned struct(s). See the documentation for the HAL module of interest for more details about the interface.

Implementations on Foreign Types

Split the SIM peripheral into useful chunks

Implementors