stm32-metapac

Crates

git

Versions

stm32u535vc

Flavors

Ckgcr

Struct Ckgcr 

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

MDF clock generator control register.

Tuple Fields§

§0: u32

Implementations§

§

impl Ckgcr

pub const fn ckgden(&self) -> bool

CKGDEN.

pub const fn set_ckgden(&mut self, val: bool)

CKGDEN.

pub const fn cck0en(&self) -> bool

CCK0EN.

pub const fn set_cck0en(&mut self, val: bool)

CCK0EN.

pub const fn cck1en(&self) -> bool

CCK1EN.

pub const fn set_cck1en(&mut self, val: bool)

CCK1EN.

pub const fn ckgmod(&self) -> Ckgmod

CKGMOD.

pub const fn set_ckgmod(&mut self, val: Ckgmod)

CKGMOD.

pub const fn cck0dir(&self) -> Cckdir

CCK0DIR.

pub const fn set_cck0dir(&mut self, val: Cckdir)

CCK0DIR.

pub const fn cck1dir(&self) -> Cckdir

CCK1DIR.

pub const fn set_cck1dir(&mut self, val: Cckdir)

CCK1DIR.

pub const fn trgsens(&self) -> Trgsens

TRGSENS.

pub const fn set_trgsens(&mut self, val: Trgsens)

TRGSENS.

pub const fn trgsrc(&self) -> Trgsrc

TRGSRC.

pub const fn set_trgsrc(&mut self, val: Trgsrc)

TRGSRC.

pub const fn cckdiv(&self) -> Cckdiv

CCKDIV.

pub const fn set_cckdiv(&mut self, val: Cckdiv)

CCKDIV.

pub const fn procdiv(&self) -> u8

PROCDIV.

pub const fn set_procdiv(&mut self, val: u8)

PROCDIV.

pub const fn ckgactive(&self) -> bool

CKGACTIVE.

pub const fn set_ckgactive(&mut self, val: bool)

CKGACTIVE.

Trait Implementations§

§

impl Clone for Ckgcr

§

fn clone(&self) -> Ckgcr

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
§

impl Debug for Ckgcr

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for Ckgcr

§

fn default() -> Ckgcr

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

impl PartialEq for Ckgcr

§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl Copy for Ckgcr

§

impl Eq for Ckgcr

§

impl StructuralPartialEq for Ckgcr

Auto Trait Implementations§

§

impl Freeze for Ckgcr

§

impl RefUnwindSafe for Ckgcr

§

impl Send for Ckgcr

§

impl Sync for Ckgcr

§

impl Unpin for Ckgcr

§

impl UnwindSafe for Ckgcr

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.