#[repr(C)]
pub union PROCESS_MITIGATION_POLICY_INFORMATION_u {
    pub ASLRPolicy: PROCESS_MITIGATION_ASLR_POLICY,
    pub StrictHandleCheckPolicy: PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY,
    pub SystemCallDisablePolicy: PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY,
    pub ExtensionPointDisablePolicy: PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY,
    pub DynamicCodePolicy: PROCESS_MITIGATION_DYNAMIC_CODE_POLICY,
    pub ControlFlowGuardPolicy: PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY,
    pub SignaturePolicy: PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY,
    pub FontDisablePolicy: PROCESS_MITIGATION_FONT_DISABLE_POLICY,
    pub ImageLoadPolicy: PROCESS_MITIGATION_IMAGE_LOAD_POLICY,
    pub SystemCallFilterPolicy: PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY,
    pub PayloadRestrictionPolicy: PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY,
    pub ChildProcessPolicy: PROCESS_MITIGATION_CHILD_PROCESS_POLICY,
}

Fields§

§ ASLRPolicy:PROCESS_MITIGATION_ASLR_POLICY § StrictHandleCheckPolicy:PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY § SystemCallDisablePolicy:PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY § ExtensionPointDisablePolicy:PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY § DynamicCodePolicy:PROCESS_MITIGATION_DYNAMIC_CODE_POLICY § ControlFlowGuardPolicy:PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY § SignaturePolicy:PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY § FontDisablePolicy:PROCESS_MITIGATION_FONT_DISABLE_POLICY § ImageLoadPolicy:PROCESS_MITIGATION_IMAGE_LOAD_POLICY § SystemCallFilterPolicy:PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY § PayloadRestrictionPolicy:PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY § ChildProcessPolicy:PROCESS_MITIGATION_CHILD_PROCESS_POLICY

Trait Implementations§

source§

impl Clone for PROCESS_MITIGATION_POLICY_INFORMATION_u

source§

fn clone(&self) -> PROCESS_MITIGATION_POLICY_INFORMATION_u

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 PROCESS_MITIGATION_POLICY_INFORMATION_u

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.