#[repr(u8)]pub enum Gee {
ENCRYPTION_DISABLED = 0,
ENCRYPTION_ENABLED = 1,
}Variants§
ENCRYPTION_DISABLED = 0
Global encryption disabled. NPX on-the-fly encryption is disabled. Subsequent reads return 0.
ENCRYPTION_ENABLED = 1
Global encryption enabled. NPX on-the-fly encryption is enabled if the flash access hits in a valid memory context. Subsequent reads return 1.
Implementations§
Trait Implementations§
Source§impl Ord for Gee
impl Ord for Gee
Source§impl PartialOrd for Gee
impl PartialOrd for Gee
impl Copy for Gee
impl Eq for Gee
impl StructuralPartialEq for Gee
Auto Trait Implementations§
impl Freeze for Gee
impl RefUnwindSafe for Gee
impl Send for Gee
impl Sync for Gee
impl Unpin for Gee
impl UnwindSafe for Gee
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