#[repr(u8)]pub enum MasterSecLevelCoolfluxi {
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 Clone for MasterSecLevelCoolfluxi
impl Clone for MasterSecLevelCoolfluxi
Source§fn clone(&self) -> MasterSecLevelCoolfluxi
fn clone(&self) -> MasterSecLevelCoolfluxi
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MasterSecLevelCoolfluxi
impl Debug for MasterSecLevelCoolfluxi
Source§impl From<MasterSecLevelCoolfluxi> for u8
impl From<MasterSecLevelCoolfluxi> for u8
Source§fn from(val: MasterSecLevelCoolfluxi) -> u8
fn from(val: MasterSecLevelCoolfluxi) -> u8
Converts to this type from the input type.
Source§impl From<u8> for MasterSecLevelCoolfluxi
impl From<u8> for MasterSecLevelCoolfluxi
Source§fn from(val: u8) -> MasterSecLevelCoolfluxi
fn from(val: u8) -> MasterSecLevelCoolfluxi
Converts to this type from the input type.
Source§impl Ord for MasterSecLevelCoolfluxi
impl Ord for MasterSecLevelCoolfluxi
Source§fn cmp(&self, other: &MasterSecLevelCoolfluxi) -> Ordering
fn cmp(&self, other: &MasterSecLevelCoolfluxi) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MasterSecLevelCoolfluxi
impl PartialEq for MasterSecLevelCoolfluxi
Source§impl PartialOrd for MasterSecLevelCoolfluxi
impl PartialOrd for MasterSecLevelCoolfluxi
impl Copy for MasterSecLevelCoolfluxi
impl Eq for MasterSecLevelCoolfluxi
impl StructuralPartialEq for MasterSecLevelCoolfluxi
Auto Trait Implementations§
impl Freeze for MasterSecLevelCoolfluxi
impl RefUnwindSafe for MasterSecLevelCoolfluxi
impl Send for MasterSecLevelCoolfluxi
impl Sync for MasterSecLevelCoolfluxi
impl Unpin for MasterSecLevelCoolfluxi
impl UnwindSafe for MasterSecLevelCoolfluxi
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