Struct gd32vf103_hal::rcu::Rcu[][src]

pub struct Rcu {
    pub apb1: APB1,
    pub apb2: APB2,
    pub ahb: AHB,
    pub cfg: CFG,
    pub bdctl: BDCTL,
    // some fields omitted
}

Constrained RCU peripheral

Fields

apb1: APB1

Advanced Pheripheral Bus 1 (APB1) registers

Constrains APB1EN and ABR1RST.

apb2: APB2

Advanced Pheripheral Bus 2 (APB2) registers

Constrains APB2EN and ABR2RST.

ahb: AHB

AHB registers

Constrains AHBEN and AHBRST.

Note: only USBFS AHB peripheral is able to be reset. (Section 5.3.11)

cfg: CFG

Clock configuration registers

Constrains CFG0 and CFG1 and CTL0

bdctl: BDCTL

Backup domain control register

Constrains BDCTL.

Auto Trait Implementations

impl Send for Rcu

impl Sync for Rcu

impl Unpin for Rcu

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.