pub enum MemProtectRange {
Range32 {
base: u32,
length: u32,
},
Range64 {
base: u64,
length: u64,
},
}
Expand description
5.1.14 MEM_PROTECT_CHECK_RANGE memory range descriptor
Variants§
Trait Implementations§
Source§impl Clone for MemProtectRange
impl Clone for MemProtectRange
Source§fn clone(&self) -> MemProtectRange
fn clone(&self) -> MemProtectRange
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 MemProtectRange
impl Debug for MemProtectRange
Source§impl PartialEq for MemProtectRange
impl PartialEq for MemProtectRange
impl Copy for MemProtectRange
impl Eq for MemProtectRange
impl StructuralPartialEq for MemProtectRange
Auto Trait Implementations§
impl Freeze for MemProtectRange
impl RefUnwindSafe for MemProtectRange
impl Send for MemProtectRange
impl Sync for MemProtectRange
impl Unpin for MemProtectRange
impl UnwindSafe for MemProtectRange
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