#[repr(u8)]pub enum PqRule {
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 PqRule
impl Ord for PqRule
Source§impl PartialOrd for PqRule
impl PartialOrd for PqRule
impl Copy for PqRule
impl Eq for PqRule
impl StructuralPartialEq for PqRule
Auto Trait Implementations§
impl Freeze for PqRule
impl RefUnwindSafe for PqRule
impl Send for PqRule
impl Sync for PqRule
impl Unpin for PqRule
impl UnwindSafe for PqRule
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