Struct RegisterBlock

Source
#[repr(C)]
pub struct RegisterBlock {
Show 30 fields pub cr: u32, pub pllcfgr: u32, pub cfgr: u32, pub cir: u32, pub ahb1rstr: u32, pub ahb2rstr: u32, pub ahb3rstr: u32, _reserved0: u32, pub apb1rstr: u32, pub apb2rstr: u32, _reserved1: [u32; 2], pub ahb1enr: u32, pub ahb2enr: u32, pub ahb3enr: u32, _reserved2: u32, pub apb1enr: u32, pub apb2enr: u32, _reserved3: [u32; 2], pub ahb1lpenr: u32, pub ahb2lpenr: u32, pub ahb3lpenr: u32, _reserved4: u32, pub apb1lpenr: u32, pub apb2lpenr: u32, _reserved5: [u32; 2], pub bdcr: u32, pub csr: u32, _reserved6: [u32; 2], pub sscgr: u32, pub plli2scfgr: u32,
}

Fields§

§cr: u32§pllcfgr: u32§cfgr: u32§cir: u32§ahb1rstr: u32§ahb2rstr: u32§ahb3rstr: u32§_reserved0: u32§apb1rstr: u32§apb2rstr: u32§_reserved1: [u32; 2]§ahb1enr: u32§ahb2enr: u32§ahb3enr: u32§_reserved2: u32§apb1enr: u32§apb2enr: u32§_reserved3: [u32; 2]§ahb1lpenr: u32§ahb2lpenr: u32§ahb3lpenr: u32§_reserved4: u32§apb1lpenr: u32§apb2lpenr: u32§_reserved5: [u32; 2]§bdcr: u32§csr: u32§_reserved6: [u32; 2]§sscgr: u32§plli2scfgr: u32

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.