#[repr(u8)]pub enum SecLevel {
NONSECURE_NONPRIV_MASTER = 0,
NONSECURE_PRIV_MASTER = 1,
SECURE_NONPRIV_MASTER = 2,
SECURE_PRIV_MASTER = 3,
}Variants§
NONSECURE_NONPRIV_MASTER = 0
Non-secure and non-privileged Master.
NONSECURE_PRIV_MASTER = 1
Non-secure and privileged Master.
SECURE_NONPRIV_MASTER = 2
Secure and non-privileged Master.
SECURE_PRIV_MASTER = 3
Secure and privileged Master.
Implementations§
Trait Implementations§
Source§impl Ord for SecLevel
impl Ord for SecLevel
Source§impl PartialOrd for SecLevel
impl PartialOrd for SecLevel
impl Copy for SecLevel
impl Eq for SecLevel
impl StructuralPartialEq for SecLevel
Auto Trait Implementations§
impl Freeze for SecLevel
impl RefUnwindSafe for SecLevel
impl Send for SecLevel
impl Sync for SecLevel
impl Unpin for SecLevel
impl UnwindSafe for SecLevel
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