#[repr(u8)]pub enum Ram4Rule {
ENUM_NS_NP = 0,
ENUM_NS_P = 1,
ENUM_S_NP = 2,
ENUM_S_P = 3,
}Variants§
ENUM_NS_NP = 0
Non-secure and Non-priviledge user access allowed.
ENUM_NS_P = 1
Non-secure and Privilege access allowed.
ENUM_S_NP = 2
Secure and Non-priviledge user access allowed.
ENUM_S_P = 3
Secure and Priviledge user access allowed.
Implementations§
Trait Implementations§
Source§impl Ord for Ram4Rule
impl Ord for Ram4Rule
Source§impl PartialOrd for Ram4Rule
impl PartialOrd for Ram4Rule
impl Copy for Ram4Rule
impl Eq for Ram4Rule
impl StructuralPartialEq for Ram4Rule
Auto Trait Implementations§
impl Freeze for Ram4Rule
impl RefUnwindSafe for Ram4Rule
impl Send for Ram4Rule
impl Sync for Ram4Rule
impl Unpin for Ram4Rule
impl UnwindSafe for Ram4Rule
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