#[repr(u8)]pub enum Gde {
DECRYPTION_DISABLED = 0,
DECRYPTION_ENABLED = 1,
}Variants§
DECRYPTION_DISABLED = 0
Global decryption disabled. NPX on-the-fly decryption is globally disabled. Subsequent reads return 0.
DECRYPTION_ENABLED = 1
Global decryption enabled. NPX on-the-fly decryption is globally enabled. Subsequent reads return 1.
Implementations§
Trait Implementations§
Source§impl Ord for Gde
impl Ord for Gde
Source§impl PartialOrd for Gde
impl PartialOrd for Gde
impl Copy for Gde
impl Eq for Gde
impl StructuralPartialEq for Gde
Auto Trait Implementations§
impl Freeze for Gde
impl RefUnwindSafe for Gde
impl Send for Gde
impl Sync for Gde
impl Unpin for Gde
impl UnwindSafe for Gde
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