Enum Cp11
#[repr(u8)]pub enum Cp11 {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Access privileges for coprocessor 11.
Value on reset: 0
Variants§
_00 = 0
0: Access denied. Any attempted access generates a NOCP UsageFault
_01 = 1
1: Privileged access only. An unprivileged access generates a NOCP fault.
_10 = 2
2: Reserved. The result of any access is UNPREDICTABLE.
_11 = 3
3: Full access.
Trait Implementations§
impl Copy for Cp11
impl Eq for Cp11
impl IsEnum for Cp11
impl StructuralPartialEq for Cp11
Auto Trait Implementations§
impl Freeze for Cp11
impl RefUnwindSafe for Cp11
impl Send for Cp11
impl Sync for Cp11
impl Unpin for Cp11
impl UnwindSafe for Cp11
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