Struct faithe::process::MemoryRegion
source · [−]pub struct MemoryRegion {
pub start: usize,
pub end: usize,
pub size: usize,
pub protection: PAGE_PROTECTION_FLAGS,
pub initial: PAGE_PROTECTION_FLAGS,
}
Expand description
Allocated memory page
Fields
start: usize
Start of the page
end: usize
End of the region
size: usize
Size of the region
protection: PAGE_PROTECTION_FLAGS
Protection of the region
initial: PAGE_PROTECTION_FLAGS
Initial protection of the region
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MemoryRegion
impl Send for MemoryRegion
impl Sync for MemoryRegion
impl Unpin for MemoryRegion
impl UnwindSafe for MemoryRegion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more