[][src]Enum stm32f3xx_hal_v2::pac::rtc::cr::WUCKSEL_A

#[repr(u8)]pub enum WUCKSEL_A {
    DIV16,
    DIV8,
    DIV4,
    DIV2,
    CLOCKSPARE,
    CLOCKSPAREWITHOFFSET,
}

Wakeup clock selection

Value on reset: 0

Variants

DIV16

0: RTC/16 clock is selected

DIV8

1: RTC/8 clock is selected

DIV4

2: RTC/4 clock is selected

DIV2

3: RTC/2 clock is selected

CLOCKSPARE

4: ck_spre (usually 1 Hz) clock is selected

CLOCKSPAREWITHOFFSET

6: ck_spre (usually 1 Hz) clock is selected and 2^16 is added to the WUT counter value

Trait Implementations

impl Clone for WUCKSEL_A[src]

impl Copy for WUCKSEL_A[src]

impl Debug for WUCKSEL_A[src]

impl PartialEq<WUCKSEL_A> for WUCKSEL_A[src]

impl StructuralPartialEq for WUCKSEL_A[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.