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