pub enum MemoryProtectionMode {
Disabled = 0,
Default = 1,
Strict = 2,
Relaxed = 3,
}
Variants§
Trait Implementations§
Source§impl Clone for MemoryProtectionMode
impl Clone for MemoryProtectionMode
Source§fn clone(&self) -> MemoryProtectionMode
fn clone(&self) -> MemoryProtectionMode
Returns a copy 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 MemoryProtectionMode
impl Debug for MemoryProtectionMode
Source§impl Inspect for MemoryProtectionMode
impl Inspect for MemoryProtectionMode
impl Copy for MemoryProtectionMode
Auto Trait Implementations§
impl Freeze for MemoryProtectionMode
impl RefUnwindSafe for MemoryProtectionMode
impl Send for MemoryProtectionMode
impl Sync for MemoryProtectionMode
impl Unpin for MemoryProtectionMode
impl UnwindSafe for MemoryProtectionMode
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