#[repr(u8)]pub enum SysSecurityCfg {
FAB_CONFIG = 0,
OPEN_CONFIG = 1,
_RESERVED_2 = 2,
CLOSED_CONFIG = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
FIELD_RETURN_CONFIG = 7,
}Variants§
FAB_CONFIG = 0
Fab Configuration - the default configuration of newly fabricated chips
OPEN_CONFIG = 1
Open Configuration - the configuration after NXP-programmable fuses have been blown
_RESERVED_2 = 2
CLOSED_CONFIG = 3
Closed Configuration - the configuration after OEM-programmable fuses have been blown
_RESERVED_4 = 4
_RESERVED_5 = 5
_RESERVED_6 = 6
FIELD_RETURN_CONFIG = 7
Field Return Configuration - the configuration of chips that are returned to NXP for analysis
Implementations§
Trait Implementations§
Source§impl Clone for SysSecurityCfg
impl Clone for SysSecurityCfg
Source§fn clone(&self) -> SysSecurityCfg
fn clone(&self) -> SysSecurityCfg
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 SysSecurityCfg
impl Debug for SysSecurityCfg
Source§impl From<SysSecurityCfg> for u8
impl From<SysSecurityCfg> for u8
Source§fn from(val: SysSecurityCfg) -> u8
fn from(val: SysSecurityCfg) -> u8
Converts to this type from the input type.
Source§impl From<u8> for SysSecurityCfg
impl From<u8> for SysSecurityCfg
Source§fn from(val: u8) -> SysSecurityCfg
fn from(val: u8) -> SysSecurityCfg
Converts to this type from the input type.
Source§impl Ord for SysSecurityCfg
impl Ord for SysSecurityCfg
Source§fn cmp(&self, other: &SysSecurityCfg) -> Ordering
fn cmp(&self, other: &SysSecurityCfg) -> 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 SysSecurityCfg
impl PartialEq for SysSecurityCfg
Source§impl PartialOrd for SysSecurityCfg
impl PartialOrd for SysSecurityCfg
impl Copy for SysSecurityCfg
impl Eq for SysSecurityCfg
impl StructuralPartialEq for SysSecurityCfg
Auto Trait Implementations§
impl Freeze for SysSecurityCfg
impl RefUnwindSafe for SysSecurityCfg
impl Send for SysSecurityCfg
impl Sync for SysSecurityCfg
impl Unpin for SysSecurityCfg
impl UnwindSafe for SysSecurityCfg
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