Enum stm32h7xx_hal::stm32::rtc::isr::TSOVF_A[][src]

pub enum TSOVF_A {
    OVERFLOW,
}

Time-stamp overflow flag This flag is set by hardware when a time-stamp event occurs while TSF is already set. This flag is cleared by software by writing 0. It is recommended to check and then clear TSOVF only after clearing the TSF bit. Otherwise, an overflow might not be noticed if a time-stamp event occurs immediately before the TSF bit is cleared.

Value on reset: 0

Variants

OVERFLOW

1: This flag is set by hardware when a time-stamp event occurs while TSF is already set

Trait Implementations

impl Clone for TSOVF_A[src]

impl Copy for TSOVF_A[src]

impl Debug for TSOVF_A[src]

impl PartialEq<TSOVF_A> for TSOVF_A[src]

impl StructuralPartialEq for TSOVF_A[src]

Auto Trait Implementations

impl Send for TSOVF_A

impl Sync for TSOVF_A

impl Unpin for TSOVF_A

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.