stm32l0x1-hal 0.9.0

Peripheral access API for STM32L0x1 microcontrollers
Documentation
//! Common primitives for this HAL

/// Extension trait to constrain the peripheral.
pub trait Constrain<T> {
    /// Constrains the peripheral to play nicely with the other abstractions
    fn constrain(self) -> T;
}