#[repr(u64)]
pub enum FastFailCode {
Show 68 variants FAST_FAIL_LEGACY_GS_VIOLATION, FAST_FAIL_VTGUARD_CHECK_FAILURE, FAST_FAIL_STACK_COOKIE_CHECK_FAILURE, FAST_FAIL_CORRUPT_LIST_ENTRY, FAST_FAIL_INCORRECT_STACK, FAST_FAIL_INVALID_ARG, FAST_FAIL_GS_COOKIE_INIT, FAST_FAIL_FATAL_APP_EXIT, FAST_FAIL_RANGE_CHECK_FAILURE, FAST_FAIL_UNSAFE_REGISTRY_ACCESS, FAST_FAIL_GUARD_ICALL_CHECK_FAILURE, FAST_FAIL_GUARD_WRITE_CHECK_FAILURE, FAST_FAIL_INVALID_FIBER_SWITCH, FAST_FAIL_INVALID_SET_OF_CONTEXT, FAST_FAIL_INVALID_REFERENCE_COUNT, FAST_FAIL_INVALID_JUMP_BUFFER, FAST_FAIL_MRDATA_MODIFIED, FAST_FAIL_CERTIFICATION_FAILURE, FAST_FAIL_INVALID_EXCEPTION_CHAIN, FAST_FAIL_CRYPTO_LIBRARY, FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT, FAST_FAIL_INVALID_IMAGE_BASE, FAST_FAIL_DLOAD_PROTECTION_FAILURE, FAST_FAIL_UNSAFE_EXTENSION_CALL, FAST_FAIL_DEPRECATED_SERVICE_INVOKED, FAST_FAIL_INVALID_BUFFER_ACCESS, FAST_FAIL_INVALID_BALANCED_TREE, FAST_FAIL_INVALID_NEXT_THREAD, FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED, FAST_FAIL_APCS_DISABLED, FAST_FAIL_INVALID_IDLE_STATE, FAST_FAIL_MRDATA_PROTECTION_FAILURE, FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION, FAST_FAIL_INVALID_LOCK_STATE, FAST_FAIL_GUARD_JUMPTABLE, FAST_FAIL_INVALID_LONGJUMP_TARGET, FAST_FAIL_INVALID_DISPATCH_CONTEXT, FAST_FAIL_INVALID_THREAD, FAST_FAIL_INVALID_SYSCALL_NUMBER, FAST_FAIL_INVALID_FILE_OPERATION, FAST_FAIL_LPAC_ACCESS_DENIED, FAST_FAIL_GUARD_SS_FAILURE, FAST_FAIL_LOADER_CONTINUITY_FAILURE, FAST_FAIL_GUARD_EXPORT_SUPPRESSION_FAILURE, FAST_FAIL_INVALID_CONTROL_STACK, FAST_FAIL_SET_CONTEXT_DENIED, FAST_FAIL_INVALID_IAT, FAST_FAIL_HEAP_METADATA_CORRUPTION, FAST_FAIL_PAYLOAD_RESTRICTION_VIOLATION, FAST_FAIL_LOW_LABEL_ACCESS_DENIED, FAST_FAIL_ENCLAVE_CALL_FAILURE, FAST_FAIL_UNHANDLED_LSS_EXCEPTON, FAST_FAIL_ADMINLESS_ACCESS_DENIED, FAST_FAIL_UNEXPECTED_CALL, FAST_FAIL_CONTROL_INVALID_RETURN_ADDRESS, FAST_FAIL_UNEXPECTED_HOST_BEHAVIOR, FAST_FAIL_FLAGS_CORRUPTION, FAST_FAIL_VEH_CORRUPTION, FAST_FAIL_ETW_CORRUPTION, FAST_FAIL_RIO_ABORT, FAST_FAIL_INVALID_PFN, FAST_FAIL_GUARD_ICALL_CHECK_FAILURE_XFG, FAST_FAIL_CAST_GUARD, FAST_FAIL_HOST_VISIBILITY_CHANGE, FAST_FAIL_KERNEL_CET_SHADOW_STACK_ASSIST, FAST_FAIL_PATCH_CALLBACK_FAILED, FAST_FAIL_NTDLL_PATCH_FAILED, FAST_FAIL_INVALID_FLS_DATA,
}
Expand description

Values for MINIDUMP_EXCEPTION::exception_information[0], when MINIDUMP_EXCEPTION::exception_code is NtStatusWindows::STATUS_STACK_BUFFER_OVERRUN. This describes the underlying reason for the crash.

The values were generated from from winnt.h in the Windows 11 SDK (version 10.0.22000.0) using the following script:

egrep '#define FAST_FAIL_[A-Z_0-9]+\s+[0-9]' winnt.h \
| tr -d '\r' \
| sed -r 's@#define (FAST_FAIL_[A-Z_0-9]+)\s+([0-9]+).*@\2 \1@' \
| sed -r 's@([0-9]+) ([A-Z_0-9]+)@    \2 = \1,@'

Variants

FAST_FAIL_LEGACY_GS_VIOLATION

FAST_FAIL_VTGUARD_CHECK_FAILURE

FAST_FAIL_CORRUPT_LIST_ENTRY

FAST_FAIL_INCORRECT_STACK

FAST_FAIL_INVALID_ARG

FAST_FAIL_FATAL_APP_EXIT

FAST_FAIL_RANGE_CHECK_FAILURE

FAST_FAIL_UNSAFE_REGISTRY_ACCESS

FAST_FAIL_GUARD_ICALL_CHECK_FAILURE

FAST_FAIL_GUARD_WRITE_CHECK_FAILURE

FAST_FAIL_INVALID_FIBER_SWITCH

FAST_FAIL_INVALID_SET_OF_CONTEXT

FAST_FAIL_INVALID_REFERENCE_COUNT

FAST_FAIL_INVALID_JUMP_BUFFER

FAST_FAIL_MRDATA_MODIFIED

FAST_FAIL_CERTIFICATION_FAILURE

FAST_FAIL_INVALID_EXCEPTION_CHAIN

FAST_FAIL_CRYPTO_LIBRARY

FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT

FAST_FAIL_INVALID_IMAGE_BASE

FAST_FAIL_DLOAD_PROTECTION_FAILURE

FAST_FAIL_UNSAFE_EXTENSION_CALL

FAST_FAIL_DEPRECATED_SERVICE_INVOKED

FAST_FAIL_INVALID_BUFFER_ACCESS

FAST_FAIL_INVALID_BALANCED_TREE

FAST_FAIL_INVALID_NEXT_THREAD

FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED

FAST_FAIL_APCS_DISABLED

FAST_FAIL_INVALID_IDLE_STATE

FAST_FAIL_MRDATA_PROTECTION_FAILURE

FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION

FAST_FAIL_INVALID_LOCK_STATE

FAST_FAIL_GUARD_JUMPTABLE

FAST_FAIL_INVALID_LONGJUMP_TARGET

FAST_FAIL_INVALID_DISPATCH_CONTEXT

FAST_FAIL_INVALID_THREAD

FAST_FAIL_INVALID_SYSCALL_NUMBER

FAST_FAIL_INVALID_FILE_OPERATION

FAST_FAIL_LPAC_ACCESS_DENIED

FAST_FAIL_GUARD_SS_FAILURE

FAST_FAIL_LOADER_CONTINUITY_FAILURE

FAST_FAIL_GUARD_EXPORT_SUPPRESSION_FAILURE

FAST_FAIL_INVALID_CONTROL_STACK

FAST_FAIL_SET_CONTEXT_DENIED

FAST_FAIL_INVALID_IAT

FAST_FAIL_HEAP_METADATA_CORRUPTION

FAST_FAIL_PAYLOAD_RESTRICTION_VIOLATION

FAST_FAIL_LOW_LABEL_ACCESS_DENIED

FAST_FAIL_ENCLAVE_CALL_FAILURE

FAST_FAIL_UNHANDLED_LSS_EXCEPTON

FAST_FAIL_ADMINLESS_ACCESS_DENIED

FAST_FAIL_UNEXPECTED_CALL

FAST_FAIL_CONTROL_INVALID_RETURN_ADDRESS

FAST_FAIL_UNEXPECTED_HOST_BEHAVIOR

FAST_FAIL_FLAGS_CORRUPTION

FAST_FAIL_VEH_CORRUPTION

FAST_FAIL_ETW_CORRUPTION

FAST_FAIL_RIO_ABORT

FAST_FAIL_INVALID_PFN

FAST_FAIL_GUARD_ICALL_CHECK_FAILURE_XFG

FAST_FAIL_CAST_GUARD

FAST_FAIL_HOST_VISIBILITY_CHANGE

FAST_FAIL_KERNEL_CET_SHADOW_STACK_ASSIST

FAST_FAIL_PATCH_CALLBACK_FAILED

FAST_FAIL_NTDLL_PATCH_FAILED

FAST_FAIL_INVALID_FLS_DATA

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned. Read more

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned. Read more

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned. Read more

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned. Read more

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned. Read more

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned. Read more

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned. Read more

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned. Read more

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned. Read more

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned. Read more

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32. Read more

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.