[][src]Struct esp_idf_bindgen::rtc_cpu_freq_config_s

#[repr(C)]pub struct rtc_cpu_freq_config_s {
    pub source: rtc_cpu_freq_src_t,
    pub source_freq_mhz: u32,
    pub div: u32,
    pub freq_mhz: u32,
}

@brief CPU clock configuration structure

Fields

source: rtc_cpu_freq_src_t

!< The clock from which CPU clock is derived

source_freq_mhz: u32

!< Source clock frequency

div: u32

!< Divider, freq_mhz = source_freq_mhz / div

freq_mhz: u32

!< CPU clock frequency

Trait Implementations

impl Clone for rtc_cpu_freq_config_s[src]

impl Copy for rtc_cpu_freq_config_s[src]

impl Debug for rtc_cpu_freq_config_s[src]

Auto Trait Implementations

impl Send for rtc_cpu_freq_config_s

impl Sync for rtc_cpu_freq_config_s

impl Unpin for rtc_cpu_freq_config_s

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, 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.