pub trait FlashExt: Sealed {
    // Required method
    fn constrain(self) -> Parts;
}
Expand description

Extension trait to constrain the FLASH peripheral

Required Methods§

source

fn constrain(self) -> Parts

Constrains the FLASH peripheral.

Consumes the pac::FLASH peripheral and converts it to a HAL internal type constraining it’s public access surface to fit the design of the HAL.

Implementors§