Enum Cp10
#[repr(u8)]pub enum Cp10 {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Access privileges for coprocessor 10.
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 Cp10
impl Eq for Cp10
impl IsEnum for Cp10
impl StructuralPartialEq for Cp10
Auto Trait Implementations§
impl Freeze for Cp10
impl RefUnwindSafe for Cp10
impl Send for Cp10
impl Sync for Cp10
impl Unpin for Cp10
impl UnwindSafe for Cp10
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