#[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: PVOID§AllocationProtect: ULONG§RegionType: ULONG§RegionSize: SIZE_T§CommitSize: SIZE_T

Implementations§

source§

impl MEMORY_REGION_INFORMATION

source

pub const fn Private(&self) -> ULONG

source

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

source

pub const fn MappedDataFile(&self) -> ULONG

source

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

source

pub const fn MappedImage(&self) -> ULONG

source

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

source

pub const fn MappedPageFile(&self) -> ULONG

source

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

source

pub const fn MappedPhysical(&self) -> ULONG

source

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

source

pub const fn DirectMapped(&self) -> ULONG

source

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

source

pub const fn SoftwareEnclave(&self) -> ULONG

source

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

source

pub const fn PageSize64K(&self) -> ULONG

source

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

source

pub const fn PlaceholderReservation(&self) -> ULONG

source

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

source

pub const fn Reserved(&self) -> ULONG

source

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

Trait Implementations§

source§

impl Clone for MEMORY_REGION_INFORMATION

source§

fn clone(&self) -> MEMORY_REGION_INFORMATION

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for MEMORY_REGION_INFORMATION

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.