#[repr(u8)]
pub enum SafeClockDiv {
Show 16 variants Div1, Div2, Div4, Div8, Div16, Div32, Div64, Div128, Div256, Div512, Div1024, Div2048, Div4096, Div8192, Div16384, Div32768,
}
Expand description

Division factor for the safe clock prescaler

If an Xosc clock failure is detected, the hardware will switch to a safe clock derived from the Dfll. This enum sets the divider between the 48 MHz DFLL and the safe clock frequency. The divider can be any value of 2^N, with N in the range 0..16.

Variants

Div1

Div2

Div4

Div8

Div16

Div32

Div64

Div128

Div256

Div512

Div1024

Div2048

Div4096

Div8192

Div16384

Div32768

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.