[][src]Struct ntapi::ntmmapi::MEMORY_REGION_INFORMATION

#[repr(C)]pub struct MEMORY_REGION_INFORMATION {
    pub AllocationBase: PVOID,
    pub AllocationProtect: ULONG,
    pub RegionType: ULONG,
    pub RegionSize: SIZE_T,
    pub CommitSize: SIZE_T,
}

Fields

AllocationBase: PVOIDAllocationProtect: ULONGRegionType: ULONGRegionSize: SIZE_TCommitSize: SIZE_T

Implementations

impl MEMORY_REGION_INFORMATION[src]

pub const fn Private(&self) -> ULONG[src]

pub fn set_Private(&mut self, val: ULONG)[src]

pub const fn MappedDataFile(&self) -> ULONG[src]

pub fn set_MappedDataFile(&mut self, val: ULONG)[src]

pub const fn MappedImage(&self) -> ULONG[src]

pub fn set_MappedImage(&mut self, val: ULONG)[src]

pub const fn MappedPageFile(&self) -> ULONG[src]

pub fn set_MappedPageFile(&mut self, val: ULONG)[src]

pub const fn MappedPhysical(&self) -> ULONG[src]

pub fn set_MappedPhysical(&mut self, val: ULONG)[src]

pub const fn DirectMapped(&self) -> ULONG[src]

pub fn set_DirectMapped(&mut self, val: ULONG)[src]

pub const fn SoftwareEnclave(&self) -> ULONG[src]

pub fn set_SoftwareEnclave(&mut self, val: ULONG)[src]

pub const fn PageSize64K(&self) -> ULONG[src]

pub fn set_PageSize64K(&mut self, val: ULONG)[src]

pub const fn PlaceholderReservation(&self) -> ULONG[src]

pub fn set_PlaceholderReservation(&mut self, val: ULONG)[src]

pub const fn Reserved(&self) -> ULONG[src]

pub fn set_Reserved(&mut self, val: ULONG)[src]

Trait Implementations

impl Clone for MEMORY_REGION_INFORMATION[src]

impl Copy for MEMORY_REGION_INFORMATION[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.