#[repr(u8)]pub enum MasterSecLevelUsdhc {
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 MasterSecLevelUsdhc
impl Clone for MasterSecLevelUsdhc
Source§fn clone(&self) -> MasterSecLevelUsdhc
fn clone(&self) -> MasterSecLevelUsdhc
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 MasterSecLevelUsdhc
impl Debug for MasterSecLevelUsdhc
Source§impl From<MasterSecLevelUsdhc> for u8
impl From<MasterSecLevelUsdhc> for u8
Source§fn from(val: MasterSecLevelUsdhc) -> u8
fn from(val: MasterSecLevelUsdhc) -> u8
Converts to this type from the input type.
Source§impl From<u8> for MasterSecLevelUsdhc
impl From<u8> for MasterSecLevelUsdhc
Source§fn from(val: u8) -> MasterSecLevelUsdhc
fn from(val: u8) -> MasterSecLevelUsdhc
Converts to this type from the input type.
Source§impl Ord for MasterSecLevelUsdhc
impl Ord for MasterSecLevelUsdhc
Source§fn cmp(&self, other: &MasterSecLevelUsdhc) -> Ordering
fn cmp(&self, other: &MasterSecLevelUsdhc) -> 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 MasterSecLevelUsdhc
impl PartialEq for MasterSecLevelUsdhc
Source§impl PartialOrd for MasterSecLevelUsdhc
impl PartialOrd for MasterSecLevelUsdhc
impl Copy for MasterSecLevelUsdhc
impl Eq for MasterSecLevelUsdhc
impl StructuralPartialEq for MasterSecLevelUsdhc
Auto Trait Implementations§
impl Freeze for MasterSecLevelUsdhc
impl RefUnwindSafe for MasterSecLevelUsdhc
impl Send for MasterSecLevelUsdhc
impl Sync for MasterSecLevelUsdhc
impl Unpin for MasterSecLevelUsdhc
impl UnwindSafe for MasterSecLevelUsdhc
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