Enum stm32f3xx_hal::Toggle [−][src]
pub enum Toggle {
On,
Off,
}Expand description
Toggle something on or off.
Convenience enum and wrapper around a bool, which more explicit about the intention to enable
or disable something, in comparison to true or false.
Variants
Toggle something on / enable a thing.
Toggle something off / disable a thing.