#[repr(u8)]pub enum MiscCtrlDpRegEnableSecureChecking {
_RESERVED_0 = 0,
ENABLED = 1,
DISABLED = 2,
_RESERVED_3 = 3,
}Variants§
_RESERVED_0 = 0
ENABLED = 1
Enables secure checking. Violation can be detected when the security level of a transaction does not meet the security rule of the slave or memory to be accessed.
DISABLED = 2
Disables secure checking. Even if the security level of a transaction does not conform to the security rule of the slave or memory, it will not be detected as a violation.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Clone for MiscCtrlDpRegEnableSecureChecking
impl Clone for MiscCtrlDpRegEnableSecureChecking
Source§fn clone(&self) -> MiscCtrlDpRegEnableSecureChecking
fn clone(&self) -> MiscCtrlDpRegEnableSecureChecking
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<MiscCtrlDpRegEnableSecureChecking> for u8
impl From<MiscCtrlDpRegEnableSecureChecking> for u8
Source§fn from(val: MiscCtrlDpRegEnableSecureChecking) -> u8
fn from(val: MiscCtrlDpRegEnableSecureChecking) -> u8
Converts to this type from the input type.
Source§impl From<u8> for MiscCtrlDpRegEnableSecureChecking
impl From<u8> for MiscCtrlDpRegEnableSecureChecking
Source§fn from(val: u8) -> MiscCtrlDpRegEnableSecureChecking
fn from(val: u8) -> MiscCtrlDpRegEnableSecureChecking
Converts to this type from the input type.
Source§impl Ord for MiscCtrlDpRegEnableSecureChecking
impl Ord for MiscCtrlDpRegEnableSecureChecking
Source§fn cmp(&self, other: &MiscCtrlDpRegEnableSecureChecking) -> Ordering
fn cmp(&self, other: &MiscCtrlDpRegEnableSecureChecking) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MiscCtrlDpRegEnableSecureChecking
impl PartialEq for MiscCtrlDpRegEnableSecureChecking
Source§fn eq(&self, other: &MiscCtrlDpRegEnableSecureChecking) -> bool
fn eq(&self, other: &MiscCtrlDpRegEnableSecureChecking) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MiscCtrlDpRegEnableSecureChecking
impl PartialOrd for MiscCtrlDpRegEnableSecureChecking
impl Copy for MiscCtrlDpRegEnableSecureChecking
impl Eq for MiscCtrlDpRegEnableSecureChecking
impl StructuralPartialEq for MiscCtrlDpRegEnableSecureChecking
Auto Trait Implementations§
impl Freeze for MiscCtrlDpRegEnableSecureChecking
impl RefUnwindSafe for MiscCtrlDpRegEnableSecureChecking
impl Send for MiscCtrlDpRegEnableSecureChecking
impl Sync for MiscCtrlDpRegEnableSecureChecking
impl Unpin for MiscCtrlDpRegEnableSecureChecking
impl UnwindSafe for MiscCtrlDpRegEnableSecureChecking
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more