#[non_exhaustive]#[repr(u32)]pub enum RstmgrReg {
Show 16 variants
AlertTest = 0,
ResetReq = 4,
ResetInfo = 8,
AlertRegwen = 12,
AlertInfoCtrl = 16,
AlertInfoAttr = 20,
AlertInfo = 24,
CpuRegwen = 28,
CpuInfoCtrl = 32,
CpuInfoAttr = 36,
CpuInfo = 40,
SwRstRegwen0 = 44,
SwRstRegwen1 = 48,
SwRstCtrlN0 = 76,
SwRstCtrlN1 = 80,
ErrCode = 108,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AlertTest = 0
ResetReq = 4
ResetInfo = 8
AlertRegwen = 12
AlertInfoCtrl = 16
AlertInfoAttr = 20
AlertInfo = 24
CpuRegwen = 28
CpuInfoCtrl = 32
CpuInfoAttr = 36
CpuInfo = 40
SwRstRegwen0 = 44
SwRstRegwen1 = 48
SwRstCtrlN0 = 76
SwRstCtrlN1 = 80
ErrCode = 108
Trait Implementations§
impl Copy for RstmgrReg
impl Eq for RstmgrReg
impl StructuralPartialEq for RstmgrReg
Auto Trait Implementations§
impl Freeze for RstmgrReg
impl RefUnwindSafe for RstmgrReg
impl Send for RstmgrReg
impl Sync for RstmgrReg
impl Unpin for RstmgrReg
impl UnwindSafe for RstmgrReg
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