stm32-metapac

Crates

git

Versions

stm32u535cb

Flavors

Privcfgr2

Struct Privcfgr2 

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

GTZC1 TZSC privilege configuration register 2.

Tuple Fields§

§0: u32

Implementations§

§

impl Privcfgr2

pub const fn fdcan1priv(&self) -> bool

privileged access mode for FDCAN1.

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

privileged access mode for FDCAN1.

pub const fn fdcan2priv(&self) -> bool

privileged access mode for FDCAN2.

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

privileged access mode for FDCAN2.

pub const fn ucpdpriv(&self) -> bool

privileged access mode for UCPD.

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

privileged access mode for UCPD.

pub const fn tim1priv(&self) -> bool

privileged access mode for TIM1.

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

privileged access mode for TIM1.

pub const fn spi1priv(&self) -> bool

privileged access mode for SPI1.

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

privileged access mode for SPI1.

pub const fn tim8priv(&self) -> bool

privileged access mode for TIM8.

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

privileged access mode for TIM8.

pub const fn usart1priv(&self) -> bool

privileged access mode for USART1.

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

privileged access mode for USART1.

pub const fn tim15priv(&self) -> bool

privileged access mode for TIM15.

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

privileged access mode for TIM15.

pub const fn tim16priv(&self) -> bool

privileged access mode for TIM16.

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

privileged access mode for TIM16.

pub const fn tim17priv(&self) -> bool

privileged access mode for TIM17.

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

privileged access mode for TIM17.

pub const fn spi4priv(&self) -> bool

privileged access mode for SPI4.

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

privileged access mode for SPI4.

pub const fn spi6priv(&self) -> bool

privileged access mode for SPI6.

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

privileged access mode for SPI6.

pub const fn sai1priv(&self) -> bool

privileged access mode for SAI1.

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

privileged access mode for SAI1.

pub const fn sai2priv(&self) -> bool

privileged access mode for SAI2.

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

privileged access mode for SAI2.

pub const fn usbpriv(&self) -> bool

privileged access mode for USB.

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

privileged access mode for USB.

pub const fn spi5priv(&self) -> bool

privileged access mode for SPI5.

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

privileged access mode for SPI5.

pub const fn lpuart1priv(&self) -> bool

privileged access mode for LPUART.

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

privileged access mode for LPUART.

pub const fn i2c3priv(&self) -> bool

privileged access mode for I2C3.

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

privileged access mode for I2C3.

pub const fn i2c4priv(&self) -> bool

privileged access mode for I2C4.

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

privileged access mode for I2C4.

pub const fn lptim1priv(&self) -> bool

privileged access mode for LPTIM1.

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

privileged access mode for LPTIM1.

pub const fn lptim3priv(&self) -> bool

privileged access mode for LPTIM3.

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

privileged access mode for LPTIM3.

pub const fn lptim4priv(&self) -> bool

privileged access mode for LPTIM4.

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

privileged access mode for LPTIM4.

pub const fn lptim5priv(&self) -> bool

privileged access mode for LPTIM5.

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

privileged access mode for LPTIM5.

Trait Implementations§

§

impl Clone for Privcfgr2

§

fn clone(&self) -> Privcfgr2

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 Privcfgr2

§

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

Formats the value using the given formatter. Read more
§

impl Default for Privcfgr2

§

fn default() -> Privcfgr2

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

impl PartialEq for Privcfgr2

§

fn eq(&self, other: &Privcfgr2) -> 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 Privcfgr2

§

impl Eq for Privcfgr2

§

impl StructuralPartialEq for Privcfgr2

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