#[repr(u8)]pub enum MiscCtrlDpRegDisableViolationAbort {
_RESERVED_0 = 0,
NO_ABORT = 1,
ABORT = 2,
_RESERVED_3 = 3,
}Variants§
_RESERVED_0 = 0
NO_ABORT = 1
The violation detected by the secure checker will not cause an abort, but a secure_violation_irq (interrupt request) will still be asserted and serviced by ISR.
ABORT = 2
The violation detected by the secure checker will cause an abort.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Clone for MiscCtrlDpRegDisableViolationAbort
impl Clone for MiscCtrlDpRegDisableViolationAbort
Source§fn clone(&self) -> MiscCtrlDpRegDisableViolationAbort
fn clone(&self) -> MiscCtrlDpRegDisableViolationAbort
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<MiscCtrlDpRegDisableViolationAbort> for u8
impl From<MiscCtrlDpRegDisableViolationAbort> for u8
Source§fn from(val: MiscCtrlDpRegDisableViolationAbort) -> u8
fn from(val: MiscCtrlDpRegDisableViolationAbort) -> u8
Converts to this type from the input type.
Source§impl From<u8> for MiscCtrlDpRegDisableViolationAbort
impl From<u8> for MiscCtrlDpRegDisableViolationAbort
Source§fn from(val: u8) -> MiscCtrlDpRegDisableViolationAbort
fn from(val: u8) -> MiscCtrlDpRegDisableViolationAbort
Converts to this type from the input type.
Source§impl Ord for MiscCtrlDpRegDisableViolationAbort
impl Ord for MiscCtrlDpRegDisableViolationAbort
Source§fn cmp(&self, other: &MiscCtrlDpRegDisableViolationAbort) -> Ordering
fn cmp(&self, other: &MiscCtrlDpRegDisableViolationAbort) -> 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 MiscCtrlDpRegDisableViolationAbort
impl PartialEq for MiscCtrlDpRegDisableViolationAbort
Source§fn eq(&self, other: &MiscCtrlDpRegDisableViolationAbort) -> bool
fn eq(&self, other: &MiscCtrlDpRegDisableViolationAbort) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MiscCtrlDpRegDisableViolationAbort
impl PartialOrd for MiscCtrlDpRegDisableViolationAbort
impl Copy for MiscCtrlDpRegDisableViolationAbort
impl Eq for MiscCtrlDpRegDisableViolationAbort
impl StructuralPartialEq for MiscCtrlDpRegDisableViolationAbort
Auto Trait Implementations§
impl Freeze for MiscCtrlDpRegDisableViolationAbort
impl RefUnwindSafe for MiscCtrlDpRegDisableViolationAbort
impl Send for MiscCtrlDpRegDisableViolationAbort
impl Sync for MiscCtrlDpRegDisableViolationAbort
impl Unpin for MiscCtrlDpRegDisableViolationAbort
impl UnwindSafe for MiscCtrlDpRegDisableViolationAbort
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