[][src]Struct esp_idf_bindgen::rtc_config_s

#[repr(C)]#[repr(align(4))]pub struct rtc_config_s {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u8>,
}

RTC power and clock control initialization settings

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u8>

Implementations

impl rtc_config_s[src]

pub fn ck8m_wait(&self) -> u32[src]

pub fn set_ck8m_wait(&mut self, val: u32)[src]

pub fn xtal_wait(&self) -> u32[src]

pub fn set_xtal_wait(&mut self, val: u32)[src]

pub fn pll_wait(&self) -> u32[src]

pub fn set_pll_wait(&mut self, val: u32)[src]

pub fn clkctl_init(&self) -> u32[src]

pub fn set_clkctl_init(&mut self, val: u32)[src]

pub fn pwrctl_init(&self) -> u32[src]

pub fn set_pwrctl_init(&mut self, val: u32)[src]

pub fn rtc_dboost_fpd(&self) -> u32[src]

pub fn set_rtc_dboost_fpd(&mut self, val: u32)[src]

pub fn new_bitfield_1(
    ck8m_wait: u32,
    xtal_wait: u32,
    pll_wait: u32,
    clkctl_init: u32,
    pwrctl_init: u32,
    rtc_dboost_fpd: u32
) -> __BindgenBitfieldUnit<[u8; 4], u8>
[src]

Trait Implementations

impl Clone for rtc_config_s[src]

impl Copy for rtc_config_s[src]

impl Debug for rtc_config_s[src]

Auto Trait Implementations

impl Send for rtc_config_s

impl Sync for rtc_config_s

impl Unpin for rtc_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.