Struct stm32_hal2::rtc::RtcConfig[][src]

pub struct RtcConfig { /* fields omitted */ }

Implementations

impl RtcConfig[src]

pub fn clock_source(self, source: RtcClockSource) -> Self[src]

Sets the clock source of RTC config

pub fn async_prescaler(self, prescaler: u8) -> Self[src]

Set the asynchronous prescaler of RTC config

pub fn sync_prescaler(self, prescaler: u16) -> Self[src]

Set the synchronous prescaler of RTC config

pub fn bypass_lse_output(self, bypass: bool) -> Self[src]

Choose wheather to bypass the output line to the LSE, and configure it as a GPIO

Trait Implementations

impl Clone for RtcConfig[src]

impl Copy for RtcConfig[src]

impl Debug for RtcConfig[src]

impl Default for RtcConfig[src]

fn default() -> Self[src]

LSI with prescalers assuming 32.768 kHz. Raw sub-seconds in 1/256.

impl PartialEq<RtcConfig> for RtcConfig[src]

impl StructuralPartialEq for RtcConfig[src]

Auto Trait Implementations

impl Send for RtcConfig

impl Sync for RtcConfig

impl Unpin for RtcConfig

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.