Embassy
stm32-metapac

Crates

git

Versions

stm32g4a1re

Flavors

Struct stm32_metapac::rcc::regs::Ahb2enr

#[repr(transparent)]
pub struct Ahb2enr(pub u32);
Expand description

AHB2 peripheral clock enable register

Tuple Fields§

§0: u32

Implementations§

§

impl Ahb2enr

pub const fn gpioaen(&self) -> bool

IO port A clock enable

pub fn set_gpioaen(&mut self, val: bool)

IO port A clock enable

pub const fn gpioben(&self) -> bool

IO port B clock enable

pub fn set_gpioben(&mut self, val: bool)

IO port B clock enable

pub const fn gpiocen(&self) -> bool

IO port C clock enable

pub fn set_gpiocen(&mut self, val: bool)

IO port C clock enable

pub const fn gpioden(&self) -> bool

IO port D clock enable

pub fn set_gpioden(&mut self, val: bool)

IO port D clock enable

pub const fn gpioeen(&self) -> bool

IO port E clock enable

pub fn set_gpioeen(&mut self, val: bool)

IO port E clock enable

pub const fn gpiofen(&self) -> bool

IO port F clock enable

pub fn set_gpiofen(&mut self, val: bool)

IO port F clock enable

pub const fn gpiogen(&self) -> bool

IO port G clock enable

pub fn set_gpiogen(&mut self, val: bool)

IO port G clock enable

pub const fn adc12en(&self) -> bool

ADC clock enable

pub fn set_adc12en(&mut self, val: bool)

ADC clock enable

pub const fn adc345en(&self) -> bool

DCMI clock enable

pub fn set_adc345en(&mut self, val: bool)

DCMI clock enable

pub const fn dac1en(&self) -> bool

AES accelerator clock enable

pub fn set_dac1en(&mut self, val: bool)

AES accelerator clock enable

pub const fn dac2en(&self) -> bool

HASH clock enable

pub fn set_dac2en(&mut self, val: bool)

HASH clock enable

pub const fn dac3en(&self) -> bool

Random Number Generator clock enable

pub fn set_dac3en(&mut self, val: bool)

Random Number Generator clock enable

pub const fn dac4en(&self) -> bool

DAC4 clock enable

pub fn set_dac4en(&mut self, val: bool)

DAC4 clock enable

pub const fn aesen(&self) -> bool

AES clock enable

pub fn set_aesen(&mut self, val: bool)

AES clock enable

pub const fn rngen(&self) -> bool

Random Number Generator clock enable

pub fn set_rngen(&mut self, val: bool)

Random Number Generator clock enable

Trait Implementations§

§

impl Clone for Ahb2enr

§

fn clone(&self) -> Ahb2enr

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Default for Ahb2enr

§

fn default() -> Ahb2enr

Returns the “default value” for a type. Read more
§

impl PartialEq for Ahb2enr

§

fn eq(&self, other: &Ahb2enr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for Ahb2enr

§

impl Eq for Ahb2enr

§

impl StructuralEq for Ahb2enr

§

impl StructuralPartialEq for Ahb2enr

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

§

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

§

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.