#[repr(C)]
pub struct SECTION_IMAGE_INFORMATION {
Show 15 fields pub TransferAddress: PVOID, pub ZeroBits: ULONG, pub MaximumStackSize: SIZE_T, pub CommittedStackSize: SIZE_T, pub SubSystemType: ULONG, pub u1: SECTION_IMAGE_INFORMATION_u1, pub u2: SECTION_IMAGE_INFORMATION_u2, pub ImageCharacteristics: USHORT, pub DllCharacteristics: USHORT, pub Machine: USHORT, pub ImageContainsCode: BOOLEAN, pub ImageFlags: UCHAR, pub LoaderFlags: ULONG, pub ImageFileSize: ULONG, pub CheckSum: ULONG,
}

Fields§

§TransferAddress: PVOID§ZeroBits: ULONG§MaximumStackSize: SIZE_T§CommittedStackSize: SIZE_T§SubSystemType: ULONG§u1: SECTION_IMAGE_INFORMATION_u1§u2: SECTION_IMAGE_INFORMATION_u2§ImageCharacteristics: USHORT§DllCharacteristics: USHORT§Machine: USHORT§ImageContainsCode: BOOLEAN§ImageFlags: UCHAR§LoaderFlags: ULONG§ImageFileSize: ULONG§CheckSum: ULONG

Implementations§

source§

impl SECTION_IMAGE_INFORMATION

source

pub const fn ComPlusNativeReady(&self) -> UCHAR

source

pub fn set_ComPlusNativeReady(&mut self, val: UCHAR)

source

pub const fn ComPlusILOnly(&self) -> UCHAR

source

pub fn set_ComPlusILOnly(&mut self, val: UCHAR)

source

pub const fn ImageDynamicallyRelocated(&self) -> UCHAR

source

pub fn set_ImageDynamicallyRelocated(&mut self, val: UCHAR)

source

pub const fn ImageMappedFlat(&self) -> UCHAR

source

pub fn set_ImageMappedFlat(&mut self, val: UCHAR)

source

pub const fn BaseBelow4gb(&self) -> UCHAR

source

pub fn set_BaseBelow4gb(&mut self, val: UCHAR)

source

pub const fn ComPlusPrefer32bit(&self) -> UCHAR

source

pub fn set_ComPlusPrefer32bit(&mut self, val: UCHAR)

source

pub const fn Reserved(&self) -> UCHAR

source

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

Trait Implementations§

source§

impl Clone for SECTION_IMAGE_INFORMATION

source§

fn clone(&self) -> SECTION_IMAGE_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 SECTION_IMAGE_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.