pub auto trait UnwindSafe { }
Expand description

A marker trait which represents “panic safe” types in Rust.

This trait is implemented by default for many types and behaves similarly in terms of inference of implementation to the Send and Sync traits. The purpose of this trait is to encode what types are safe to cross a catch_unwind boundary with no fear of unwind safety.

What is unwind safety?

In Rust a function can “return” early if it either panics or calls a function which transitively panics. This sort of control flow is not always anticipated, and has the possibility of causing subtle bugs through a combination of two critical components:

  1. A data structure is in a temporarily invalid state when the thread panics.
  2. This broken invariant is then later observed.

Typically in Rust, it is difficult to perform step (2) because catching a panic involves either spawning a thread (which in turns makes it difficult to later witness broken invariants) or using the catch_unwind function in this module. Additionally, even if an invariant is witnessed, it typically isn’t a problem in Rust because there are no uninitialized values (like in C or C++).

It is possible, however, for logical invariants to be broken in Rust, which can end up causing behavioral bugs. Another key aspect of unwind safety in Rust is that, in the absence of unsafe code, a panic cannot lead to memory unsafety.

That was a bit of a whirlwind tour of unwind safety, but for more information about unwind safety and how it applies to Rust, see an associated RFC.

What is UnwindSafe?

Now that we’ve got an idea of what unwind safety is in Rust, it’s also important to understand what this trait represents. As mentioned above, one way to witness broken invariants is through the catch_unwind function in this module as it allows catching a panic and then re-using the environment of the closure.

Simply put, a type T implements UnwindSafe if it cannot easily allow witnessing a broken invariant through the use of catch_unwind (catching a panic). This trait is an auto trait, so it is automatically implemented for many types, and it is also structurally composed (e.g., a struct is unwind safe if all of its components are unwind safe).

Note, however, that this is not an unsafe trait, so there is not a succinct contract that this trait is providing. Instead it is intended as more of a “speed bump” to alert users of catch_unwind that broken invariants may be witnessed and may need to be accounted for.

Who implements UnwindSafe?

Types such as &mut T and &RefCell<T> are examples which are not unwind safe. The general idea is that any mutable state which can be shared across catch_unwind is not unwind safe by default. This is because it is very easy to witness a broken invariant outside of catch_unwind as the data is simply accessed as usual.

Types like &Mutex<T>, however, are unwind safe because they implement poisoning by default. They still allow witnessing a broken invariant, but they already provide their own “speed bumps” to do so.

When should UnwindSafe be used?

It is not intended that most types or functions need to worry about this trait. It is only used as a bound on the catch_unwind function and as mentioned above, the lack of unsafe means it is mostly an advisory. The AssertUnwindSafe wrapper struct can be used to force this trait to be implemented for any closed over variables passed to catch_unwind.

Implementors§

1.59.0 · source§

impl UnwindSafe for std::sync::once::Once

1.64.0 · source§

impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>where A: Allocator + Clone + UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

1.36.0 · source§

impl<K, V, S> UnwindSafe for HashMap<K, V, S>where K: UnwindSafe, V: UnwindSafe, S: UnwindSafe,

source§

impl<T> !UnwindSafe for &mut Twhere T: ?Sized,

source§

impl<T> UnwindSafe for *const Twhere T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for *mut Twhere T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for &Twhere T: RefUnwindSafe + ?Sized,

1.25.0 · source§

impl<T> UnwindSafe for NonNull<T>where T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for Rc<T>where T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for Arc<T>where T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for Mutex<T>where T: ?Sized,

source§

impl<T> UnwindSafe for OnceLock<T>where T: UnwindSafe,

source§

impl<T> UnwindSafe for RwLock<T>where T: ?Sized,

source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

source§

impl<T, F> UnwindSafe for LazyLock<T, F>where T: UnwindSafe, F: UnwindSafe,

Auto implementors§

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::__GLsync

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::__PROC_fn

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::_cl_context

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::_cl_event

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::__GLsync

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::__PROC_fn

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::_cl_context

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::_cl_event

§

impl UnwindSafe for HINSTANCE__

§

impl UnwindSafe for HKEY__

§

impl UnwindSafe for HKL__

§

impl UnwindSafe for HLSURF__

§

impl UnwindSafe for HMETAFILE__

§

impl UnwindSafe for HRGN__

§

impl UnwindSafe for HRSRC__

§

impl UnwindSafe for HSPRITE__

§

impl UnwindSafe for HSTR__

§

impl UnwindSafe for HTASK__

§

impl UnwindSafe for HWINSTA__

§

impl UnwindSafe for __some_function

§

impl UnwindSafe for DPI_AWARENESS_CONTEXT__

§

impl UnwindSafe for HACCEL__

§

impl UnwindSafe for HBITMAP__

§

impl UnwindSafe for HBRUSH__

§

impl UnwindSafe for HCOLORSPACE__

§

impl UnwindSafe for HDC__

§

impl UnwindSafe for HDESK__

§

impl UnwindSafe for HENHMETAFILE__

§

impl UnwindSafe for HFONT__

§

impl UnwindSafe for HGLRC__

§

impl UnwindSafe for HHOOK__

§

impl UnwindSafe for HICON__

§

impl UnwindSafe for HMENU__

§

impl UnwindSafe for HMONITOR__

§

impl UnwindSafe for HPALETTE__

§

impl UnwindSafe for HPEN__

§

impl UnwindSafe for HUMPD__

§

impl UnwindSafe for HWINEVENTHOOK__

§

impl UnwindSafe for HWND__

§

impl UnwindSafe for HCMNOTIFICATION__

§

impl UnwindSafe for HRAWINPUT__

§

impl UnwindSafe for HSYNTHETICPOINTERDEVICE__

§

impl UnwindSafe for HTOUCHINPUT__

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::cmp::Ordering

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for c_void

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::fmt::Alignment

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for Which

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::sync::atomic::Ordering

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::GLYPHMETRICSFLOAT

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::GPU_DEVICE

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::LAYERPLANEDESCRIPTOR

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::PGPU_DEVICE

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::PIXELFORMATDESCRIPTOR

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::POINTFLOAT

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::RECT

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl::types::_GPU_DEVICE

§

impl UnwindSafe for FnPtr

§

impl UnwindSafe for Wgl

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::GLYPHMETRICSFLOAT

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::GPU_DEVICE

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::LAYERPLANEDESCRIPTOR

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::PGPU_DEVICE

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::PIXELFORMATDESCRIPTOR

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::POINTFLOAT

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::RECT

§

impl UnwindSafe for flo_render_gl_offscreen::wgl::wgl_extra::types::_GPU_DEVICE

§

impl UnwindSafe for DEVPROPCOMPKEY

§

impl UnwindSafe for DEVPROPERTY

§

impl UnwindSafe for DEVPROPKEY

§

impl UnwindSafe for GUID

§

impl UnwindSafe for KCRM_MARSHAL_HEADER

§

impl UnwindSafe for KCRM_PROTOCOL_BLOB

§

impl UnwindSafe for KCRM_TRANSACTION_BLOB

§

impl UnwindSafe for TRANSACTION_NOTIFICATION

§

impl UnwindSafe for TRANSACTION_NOTIFICATION_MARSHAL_ARGUMENT

§

impl UnwindSafe for TRANSACTION_NOTIFICATION_PROPAGATE_ARGUMENT

§

impl UnwindSafe for TRANSACTION_NOTIFICATION_RECOVERY_ARGUMENT

§

impl UnwindSafe for TRANSACTION_NOTIFICATION_SAVEPOINT_ARGUMENT

§

impl UnwindSafe for TRANSACTION_NOTIFICATION_TM_ONLINE_ARGUMENT

§

impl UnwindSafe for FILETIME

§

impl UnwindSafe for CSTRING

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::FLOAT128

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::GROUP_AFFINITY

§

impl UnwindSafe for LARGE_INTEGER_s

§

impl UnwindSafe for LARGE_INTEGER_u

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::LIST_ENTRY32

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::LIST_ENTRY64

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::LIST_ENTRY

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::OBJECTID

§

impl UnwindSafe for OBJECT_ATTRIBUTES32

§

impl UnwindSafe for OBJECT_ATTRIBUTES64

§

impl UnwindSafe for OBJECT_ATTRIBUTES

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::PROCESSOR_NUMBER

§

impl UnwindSafe for QUAD

§

impl UnwindSafe for RTL_BALANCED_NODE

§

impl UnwindSafe for RTL_BALANCED_NODE_s

§

impl UnwindSafe for RTL_BALANCED_NODE_u

§

impl UnwindSafe for SINGLE_LIST_ENTRY32

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::ntdef::SINGLE_LIST_ENTRY

§

impl UnwindSafe for STRING32

§

impl UnwindSafe for STRING64

§

impl UnwindSafe for STRING

§

impl UnwindSafe for ULARGE_INTEGER_s

§

impl UnwindSafe for ULARGE_INTEGER_u

§

impl UnwindSafe for UNICODE_STRING

§

impl UnwindSafe for WNF_STATE_NAME

§

impl UnwindSafe for POINT

§

impl UnwindSafe for POINTL

§

impl UnwindSafe for POINTS

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::shared::windef::RECT

§

impl UnwindSafe for RECTL

§

impl UnwindSafe for SIZE

§

impl UnwindSafe for BLOB

§

impl UnwindSafe for BYTE_BLOB

§

impl UnwindSafe for BYTE_SIZEDARR

§

impl UnwindSafe for COAUTHIDENTITY

§

impl UnwindSafe for COAUTHINFO

§

impl UnwindSafe for DWORD_BLOB

§

impl UnwindSafe for DWORD_SIZEDARR

§

impl UnwindSafe for FLAGGED_BYTE_BLOB

§

impl UnwindSafe for FLAGGED_WORD_BLOB

§

impl UnwindSafe for HYPER_SIZEDARR

§

impl UnwindSafe for WORD_BLOB

§

impl UnwindSafe for WORD_SIZEDARR

§

impl UnwindSafe for BUSNUMBER_DES

§

impl UnwindSafe for BUSNUMBER_RANGE

§

impl UnwindSafe for BUSNUMBER_RESOURCE

§

impl UnwindSafe for CM_NOTIFY_EVENT_DATA

§

impl UnwindSafe for CM_NOTIFY_EVENT_DATA_DeviceHandle

§

impl UnwindSafe for CM_NOTIFY_EVENT_DATA_DeviceInstance

§

impl UnwindSafe for CM_NOTIFY_EVENT_DATA_DeviceInterface

§

impl UnwindSafe for CM_NOTIFY_EVENT_DATA_u

§

impl UnwindSafe for CM_NOTIFY_FILTER

§

impl UnwindSafe for CM_NOTIFY_FILTER_DeviceHandle

§

impl UnwindSafe for CM_NOTIFY_FILTER_DeviceInstance

§

impl UnwindSafe for CM_NOTIFY_FILTER_DeviceInterface

§

impl UnwindSafe for CM_NOTIFY_FILTER_u

§

impl UnwindSafe for CONFLICT_DETAILS_A

§

impl UnwindSafe for CONFLICT_DETAILS_W

§

impl UnwindSafe for CONNECTION_DES

§

impl UnwindSafe for CONNECTION_RESOURCE

§

impl UnwindSafe for CS_DES

§

impl UnwindSafe for CS_RESOURCE

§

impl UnwindSafe for DEVPRIVATE_DES

§

impl UnwindSafe for DEVPRIVATE_RANGE

§

impl UnwindSafe for DEVPRIVATE_RESOURCE

§

impl UnwindSafe for DMA_DES

§

impl UnwindSafe for DMA_RANGE

§

impl UnwindSafe for DMA_RESOURCE

§

impl UnwindSafe for HWPROFILEINFO_A

§

impl UnwindSafe for HWPROFILEINFO_W

§

impl UnwindSafe for IO_DES

§

impl UnwindSafe for IO_RANGE

§

impl UnwindSafe for IO_RESOURCE

§

impl UnwindSafe for IRQ_DES_32

§

impl UnwindSafe for IRQ_DES_64

§

impl UnwindSafe for IRQ_RANGE

§

impl UnwindSafe for IRQ_RESOURCE_32

§

impl UnwindSafe for IRQ_RESOURCE_64

§

impl UnwindSafe for MEM_DES

§

impl UnwindSafe for MEM_LARGE_DES

§

impl UnwindSafe for MEM_LARGE_RANGE

§

impl UnwindSafe for MEM_LARGE_RESOURCE

§

impl UnwindSafe for MEM_RANGE

§

impl UnwindSafe for MEM_RESOURCE

§

impl UnwindSafe for MFCARD_DES

§

impl UnwindSafe for MFCARD_RESOURCE

§

impl UnwindSafe for PCCARD_DES

§

impl UnwindSafe for PCCARD_RESOURCE

§

impl UnwindSafe for BY_HANDLE_FILE_INFORMATION

§

impl UnwindSafe for CREATEFILE2_EXTENDED_PARAMETERS

§

impl UnwindSafe for FILE_ALIGNMENT_INFO

§

impl UnwindSafe for FILE_ALLOCATION_INFO

§

impl UnwindSafe for FILE_ATTRIBUTE_TAG_INFO

§

impl UnwindSafe for FILE_BASIC_INFO

§

impl UnwindSafe for FILE_COMPRESSION_INFO

§

impl UnwindSafe for FILE_DISPOSITION_INFO

§

impl UnwindSafe for FILE_END_OF_FILE_INFO

§

impl UnwindSafe for FILE_FULL_DIR_INFO

§

impl UnwindSafe for FILE_ID_BOTH_DIR_INFO

§

impl UnwindSafe for FILE_ID_INFO

§

impl UnwindSafe for FILE_IO_PRIORITY_HINT_INFO

§

impl UnwindSafe for FILE_NAME_INFO

§

impl UnwindSafe for FILE_RENAME_INFO

§

impl UnwindSafe for FILE_STANDARD_INFO

§

impl UnwindSafe for FILE_STORAGE_INFO

§

impl UnwindSafe for FILE_STREAM_INFO

§

impl UnwindSafe for WIN32_FILE_ATTRIBUTE_DATA

§

impl UnwindSafe for CREATE_PROCESS_DEBUG_INFO

§

impl UnwindSafe for CREATE_THREAD_DEBUG_INFO

§

impl UnwindSafe for DEBUG_EVENT

§

impl UnwindSafe for DEBUG_EVENT_u

§

impl UnwindSafe for EXCEPTION_DEBUG_INFO

§

impl UnwindSafe for EXIT_PROCESS_DEBUG_INFO

§

impl UnwindSafe for EXIT_THREAD_DEBUG_INFO

§

impl UnwindSafe for LOAD_DLL_DEBUG_INFO

§

impl UnwindSafe for OUTPUT_DEBUG_STRING_INFO

§

impl UnwindSafe for OVERLAPPED

§

impl UnwindSafe for OVERLAPPED_ENTRY

§

impl UnwindSafe for OVERLAPPED_u

§

impl UnwindSafe for OVERLAPPED_u_s

§

impl UnwindSafe for PROCESS_HEAP_ENTRY

§

impl UnwindSafe for PROCESS_HEAP_ENTRY_Block

§

impl UnwindSafe for PROCESS_HEAP_ENTRY_Region

§

impl UnwindSafe for PROCESS_HEAP_ENTRY_u

§

impl UnwindSafe for REASON_CONTEXT

§

impl UnwindSafe for REASON_CONTEXT_Detailed

§

impl UnwindSafe for REASON_CONTEXT_Reason

§

impl UnwindSafe for RIP_INFO

§

impl UnwindSafe for SECURITY_ATTRIBUTES

§

impl UnwindSafe for SYSTEMTIME

§

impl UnwindSafe for UNLOAD_DLL_DEBUG_INFO

§

impl UnwindSafe for WIN32_FIND_DATAA

§

impl UnwindSafe for WIN32_FIND_DATAW

§

impl UnwindSafe for PROCESS_INFORMATION

§

impl UnwindSafe for PROC_THREAD_ATTRIBUTE_LIST

§

impl UnwindSafe for STARTUPINFOA

§

impl UnwindSafe for STARTUPINFOW

§

impl UnwindSafe for ACTCTXA

§

impl UnwindSafe for ACTCTXW

§

impl UnwindSafe for ACTCTX_SECTION_KEYED_DATA

§

impl UnwindSafe for ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA

§

impl UnwindSafe for COMMCONFIG

§

impl UnwindSafe for COMMPROP

§

impl UnwindSafe for COMMTIMEOUTS

§

impl UnwindSafe for COMSTAT

§

impl UnwindSafe for COPYFILE2_EXTENDED_PARAMETERS

§

impl UnwindSafe for COPYFILE2_MESSAGE

§

impl UnwindSafe for COPYFILE2_MESSAGE_ChunkFinished

§

impl UnwindSafe for COPYFILE2_MESSAGE_ChunkStarted

§

impl UnwindSafe for COPYFILE2_MESSAGE_Error

§

impl UnwindSafe for COPYFILE2_MESSAGE_Info

§

impl UnwindSafe for COPYFILE2_MESSAGE_PollContinue

§

impl UnwindSafe for COPYFILE2_MESSAGE_StreamFinished

§

impl UnwindSafe for COPYFILE2_MESSAGE_StreamStarted

§

impl UnwindSafe for DCB

§

impl UnwindSafe for FILE_ID_DESCRIPTOR

§

impl UnwindSafe for FILE_ID_DESCRIPTOR_u

§

impl UnwindSafe for HW_PROFILE_INFOA

§

impl UnwindSafe for HW_PROFILE_INFOW

§

impl UnwindSafe for MEMORYSTATUS

§

impl UnwindSafe for OFSTRUCT

§

impl UnwindSafe for STARTUPINFOEXA

§

impl UnwindSafe for STARTUPINFOEXW

§

impl UnwindSafe for SYSTEM_POWER_STATUS

§

impl UnwindSafe for UMS_SCHEDULER_STARTUP_INFO

§

impl UnwindSafe for UMS_SYSTEM_THREAD_INFORMATION

§

impl UnwindSafe for CONSOLE_CURSOR_INFO

§

impl UnwindSafe for CONSOLE_FONT_INFOEX

§

impl UnwindSafe for CONSOLE_HISTORY_INFO

§

impl UnwindSafe for CONSOLE_READCONSOLE_CONTROL

§

impl UnwindSafe for CONSOLE_SCREEN_BUFFER_INFO

§

impl UnwindSafe for CONSOLE_SCREEN_BUFFER_INFOEX

§

impl UnwindSafe for CONSOLE_SELECTION_INFO

§

impl UnwindSafe for CHAR_INFO

§

impl UnwindSafe for CHAR_INFO_Char

§

impl UnwindSafe for CONSOLE_FONT_INFO

§

impl UnwindSafe for COORD

§

impl UnwindSafe for FOCUS_EVENT_RECORD

§

impl UnwindSafe for INPUT_RECORD

§

impl UnwindSafe for INPUT_RECORD_Event

§

impl UnwindSafe for KEY_EVENT_RECORD

§

impl UnwindSafe for KEY_EVENT_RECORD_uChar

§

impl UnwindSafe for MENU_EVENT_RECORD

§

impl UnwindSafe for MOUSE_EVENT_RECORD

§

impl UnwindSafe for SMALL_RECT

§

impl UnwindSafe for WINDOW_BUFFER_SIZE_RECORD

§

impl UnwindSafe for ABC

§

impl UnwindSafe for ABCFLOAT

§

impl UnwindSafe for AXESLISTA

§

impl UnwindSafe for AXESLISTW

§

impl UnwindSafe for AXISINFOA

§

impl UnwindSafe for AXISINFOW

§

impl UnwindSafe for BITMAP

§

impl UnwindSafe for BITMAPCOREHEADER

§

impl UnwindSafe for BITMAPCOREINFO

§

impl UnwindSafe for BITMAPFILEHEADER

§

impl UnwindSafe for BITMAPINFO

§

impl UnwindSafe for BITMAPINFOHEADER

§

impl UnwindSafe for BITMAPV4HEADER

§

impl UnwindSafe for BITMAPV5HEADER

§

impl UnwindSafe for BLENDFUNCTION

§

impl UnwindSafe for CHARSETINFO

§

impl UnwindSafe for CIEXYZ

§

impl UnwindSafe for CIEXYZTRIPLE

§

impl UnwindSafe for COLORADJUSTMENT

§

impl UnwindSafe for DESIGNVECTOR

§

impl UnwindSafe for DEVMODEA

§

impl UnwindSafe for DEVMODEW

§

impl UnwindSafe for DEVMODE_u1

§

impl UnwindSafe for DEVMODE_u1_s1

§

impl UnwindSafe for DEVMODE_u1_s2

§

impl UnwindSafe for DEVMODE_u2

§

impl UnwindSafe for DIBSECTION

§

impl UnwindSafe for DISPLAYCONFIG_2DREGION

§

impl UnwindSafe for DISPLAYCONFIG_ADAPTER_NAME

§

impl UnwindSafe for DISPLAYCONFIG_DESKTOP_IMAGE_INFO

§

impl UnwindSafe for DISPLAYCONFIG_DEVICE_INFO_HEADER

§

impl UnwindSafe for DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO

§

impl UnwindSafe for DISPLAYCONFIG_MODE_INFO

§

impl UnwindSafe for DISPLAYCONFIG_MODE_INFO_u

§

impl UnwindSafe for DISPLAYCONFIG_PATH_INFO

§

impl UnwindSafe for DISPLAYCONFIG_PATH_SOURCE_INFO

§

impl UnwindSafe for DISPLAYCONFIG_PATH_TARGET_INFO

§

impl UnwindSafe for DISPLAYCONFIG_RATIONAL

§

impl UnwindSafe for DISPLAYCONFIG_SET_ADVANCED_COLOR_STATE

§

impl UnwindSafe for DISPLAYCONFIG_SET_TARGET_PERSISTENCE

§

impl UnwindSafe for DISPLAYCONFIG_SOURCE_DEVICE_NAME

§

impl UnwindSafe for DISPLAYCONFIG_SOURCE_MODE

§

impl UnwindSafe for DISPLAYCONFIG_SUPPORT_VIRTUAL_RESOLUTION

§

impl UnwindSafe for DISPLAYCONFIG_TARGET_BASE_TYPE

§

impl UnwindSafe for DISPLAYCONFIG_TARGET_DEVICE_NAME

§

impl UnwindSafe for DISPLAYCONFIG_TARGET_DEVICE_NAME_FLAGS

§

impl UnwindSafe for DISPLAYCONFIG_TARGET_MODE

§

impl UnwindSafe for DISPLAYCONFIG_TARGET_PREFERRED_MODE

§

impl UnwindSafe for DISPLAYCONFIG_VIDEO_SIGNAL_INFO

§

impl UnwindSafe for DISPLAYCONFIG_VIDEO_SIGNAL_INFO_AdditionalSignalInfo

§

impl UnwindSafe for DISPLAYCONFIG_VIDEO_SIGNAL_INFO_u

§

impl UnwindSafe for DISPLAY_DEVICEA

§

impl UnwindSafe for DISPLAY_DEVICEW

§

impl UnwindSafe for DOCINFOA

§

impl UnwindSafe for DOCINFOW

§

impl UnwindSafe for DRAWPATRECT

§

impl UnwindSafe for EMR

§

impl UnwindSafe for EMRABORTPATH

§

impl UnwindSafe for EMRALPHABLEND

§

impl UnwindSafe for EMRANGLEARC

§

impl UnwindSafe for EMRARC

§

impl UnwindSafe for EMRBITBLT

§

impl UnwindSafe for EMRCOLORCORRECTPALETTE

§

impl UnwindSafe for EMRCOLORMATCHTOTARGET

§

impl UnwindSafe for EMRCREATEBRUSHINDIRECT

§

impl UnwindSafe for EMRCREATECOLORSPACE

§

impl UnwindSafe for EMRCREATECOLORSPACEW

§

impl UnwindSafe for EMRCREATEDIBPATTERNBRUSHPT

§

impl UnwindSafe for EMRCREATEMONOBRUSH

§

impl UnwindSafe for EMRCREATEPALETTE

§

impl UnwindSafe for EMRCREATEPEN

§

impl UnwindSafe for EMRELLIPSE

§

impl UnwindSafe for EMREOF

§

impl UnwindSafe for EMREXCLUDECLIPRECT

§

impl UnwindSafe for EMREXTCREATEFONTINDIRECTW

§

impl UnwindSafe for EMREXTCREATEPEN

§

impl UnwindSafe for EMREXTESCAPE

§

impl UnwindSafe for EMREXTFLOODFILL

§

impl UnwindSafe for EMREXTSELECTCLIPRGN

§

impl UnwindSafe for EMREXTTEXTOUTA

§

impl UnwindSafe for EMRFILLPATH

§

impl UnwindSafe for EMRFILLRGN

§

impl UnwindSafe for EMRFORMAT

§

impl UnwindSafe for EMRFRAMERGN

§

impl UnwindSafe for EMRGDICOMMENT

§

impl UnwindSafe for EMRGLSBOUNDEDRECORD

§

impl UnwindSafe for EMRGLSRECORD

§

impl UnwindSafe for EMRGRADIENTFILL

§

impl UnwindSafe for EMRINVERTRGN

§

impl UnwindSafe for EMRLINETO

§

impl UnwindSafe for EMRMASKBLT

§

impl UnwindSafe for EMRMODIFYWORLDTRANSFORM

§

impl UnwindSafe for EMRNAMEDESCAPE

§

impl UnwindSafe for EMROFFSETCLIPRGN

§

impl UnwindSafe for EMRPIXELFORMAT

§

impl UnwindSafe for EMRPLGBLT

§

impl UnwindSafe for EMRPOLYDRAW16

§

impl UnwindSafe for EMRPOLYDRAW

§

impl UnwindSafe for EMRPOLYLINE16

§

impl UnwindSafe for EMRPOLYLINE

§

impl UnwindSafe for EMRPOLYPOLYLINE16

§

impl UnwindSafe for EMRPOLYPOLYLINE

§

impl UnwindSafe for EMRPOLYTEXTOUTA

§

impl UnwindSafe for EMRRESIZEPALETTE

§

impl UnwindSafe for EMRRESTOREDC

§

impl UnwindSafe for EMRROUNDRECT

§

impl UnwindSafe for EMRSCALEVIEWPORTEXTEX

§

impl UnwindSafe for EMRSELECTCLIPPATH

§

impl UnwindSafe for EMRSELECTOBJECT

§

impl UnwindSafe for EMRSELECTPALETTE

§

impl UnwindSafe for EMRSETARCDIRECTION

§

impl UnwindSafe for EMRSETBKCOLOR

§

impl UnwindSafe for EMRSETCOLORADJUSTMENT

§

impl UnwindSafe for EMRSETCOLORSPACE

§

impl UnwindSafe for EMRSETDIBITSTODEVICE

§

impl UnwindSafe for EMRSETICMPROFILE

§

impl UnwindSafe for EMRSETMAPPERFLAGS

§

impl UnwindSafe for EMRSETMITERLIMIT

§

impl UnwindSafe for EMRSETPALETTEENTRIES

§

impl UnwindSafe for EMRSETPIXELV

§

impl UnwindSafe for EMRSETVIEWPORTEXTEX

§

impl UnwindSafe for EMRSETVIEWPORTORGEX

§

impl UnwindSafe for EMRSETWORLDTRANSFORM

§

impl UnwindSafe for EMRSTRETCHBLT

§

impl UnwindSafe for EMRSTRETCHDIBITS

§

impl UnwindSafe for EMRTEXT

§

impl UnwindSafe for EMRTRANSPARENTBLT

§

impl UnwindSafe for ENHMETAHEADER

§

impl UnwindSafe for ENHMETARECORD

§

impl UnwindSafe for ENUMLOGFONTA

§

impl UnwindSafe for ENUMLOGFONTEXA

§

impl UnwindSafe for ENUMLOGFONTEXDVA

§

impl UnwindSafe for ENUMLOGFONTEXDVW

§

impl UnwindSafe for ENUMLOGFONTEXW

§

impl UnwindSafe for ENUMLOGFONTW

§

impl UnwindSafe for ENUMTEXTMETRICA

§

impl UnwindSafe for ENUMTEXTMETRICW

§

impl UnwindSafe for EXTLOGFONTA

§

impl UnwindSafe for EXTLOGFONTW

§

impl UnwindSafe for EXTLOGPEN32

§

impl UnwindSafe for EXTLOGPEN

§

impl UnwindSafe for FIXED

§

impl UnwindSafe for FONTSIGNATURE

§

impl UnwindSafe for GCP_RESULTSA

§

impl UnwindSafe for GCP_RESULTSW

§

impl UnwindSafe for GLYPHMETRICS

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::wingdi::GLYPHMETRICSFLOAT

§

impl UnwindSafe for GLYPHSET

§

impl UnwindSafe for GRADIENT_RECT

§

impl UnwindSafe for HANDLETABLE

§

impl UnwindSafe for KERNINGPAIR

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::wingdi::LAYERPLANEDESCRIPTOR

§

impl UnwindSafe for LOCALESIGNATURE

§

impl UnwindSafe for LOGBRUSH32

§

impl UnwindSafe for LOGBRUSH

§

impl UnwindSafe for LOGCOLORSPACEA

§

impl UnwindSafe for LOGCOLORSPACEW

§

impl UnwindSafe for LOGFONTA

§

impl UnwindSafe for LOGFONTW

§

impl UnwindSafe for LOGPALETTE

§

impl UnwindSafe for LOGPEN

§

impl UnwindSafe for MAT2

§

impl UnwindSafe for METAFILEPICT

§

impl UnwindSafe for METAHEADER

§

impl UnwindSafe for METARECORD

§

impl UnwindSafe for NEWTEXTMETRICA

§

impl UnwindSafe for NEWTEXTMETRICEXA

§

impl UnwindSafe for NEWTEXTMETRICEXW

§

impl UnwindSafe for NEWTEXTMETRICW

§

impl UnwindSafe for OUTLINETEXTMETRICA

§

impl UnwindSafe for OUTLINETEXTMETRICW

§

impl UnwindSafe for PALETTEENTRY

§

impl UnwindSafe for PANOSE

§

impl UnwindSafe for PELARRAY

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::wingdi::PIXELFORMATDESCRIPTOR

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::wingdi::POINTFLOAT

§

impl UnwindSafe for POINTFX

§

impl UnwindSafe for POLYTEXTA

§

impl UnwindSafe for POLYTEXTW

§

impl UnwindSafe for PSFEATURE_CUSTPAPER

§

impl UnwindSafe for PSFEATURE_OUTPUT

§

impl UnwindSafe for PSINJECTDATA

§

impl UnwindSafe for RASTERIZER_STATUS

§

impl UnwindSafe for RGBQUAD

§

impl UnwindSafe for RGBTRIPLE

§

impl UnwindSafe for RGNDATA

§

impl UnwindSafe for RGNDATAHEADER

§

impl UnwindSafe for TEXTMETRICA

§

impl UnwindSafe for TEXTMETRICW

§

impl UnwindSafe for TRIVERTEX

§

impl UnwindSafe for TTPOLYCURVE

§

impl UnwindSafe for TTPOLYGONHEADER

§

impl UnwindSafe for WCRANGE

§

impl UnwindSafe for WGLSWAP

§

impl UnwindSafe for XFORM

§

impl UnwindSafe for ACCESS_ALLOWED_ACE

§

impl UnwindSafe for ACCESS_ALLOWED_CALLBACK_ACE

§

impl UnwindSafe for ACCESS_ALLOWED_CALLBACK_OBJECT_ACE

§

impl UnwindSafe for ACCESS_ALLOWED_OBJECT_ACE

§

impl UnwindSafe for ACCESS_DENIED_ACE

§

impl UnwindSafe for ACCESS_DENIED_CALLBACK_ACE

§

impl UnwindSafe for ACCESS_DENIED_CALLBACK_OBJECT_ACE

§

impl UnwindSafe for ACCESS_DENIED_OBJECT_ACE

§

impl UnwindSafe for ACCESS_REASONS

§

impl UnwindSafe for ACE_HEADER

§

impl UnwindSafe for ACL

§

impl UnwindSafe for ACL_REVISION_INFORMATION

§

impl UnwindSafe for ACL_SIZE_INFORMATION

§

impl UnwindSafe for ACTIVATION_CONTEXT

§

impl UnwindSafe for ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION

§

impl UnwindSafe for ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION

§

impl UnwindSafe for ACTIVATION_CONTEXT_DETAILED_INFORMATION

§

impl UnwindSafe for ACTIVATION_CONTEXT_QUERY_INDEX

§

impl UnwindSafe for ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION

§

impl UnwindSafe for ADMINISTRATOR_POWER_POLICY

§

impl UnwindSafe for ANON_OBJECT_HEADER

§

impl UnwindSafe for ANON_OBJECT_HEADER_BIGOBJ

§

impl UnwindSafe for ANON_OBJECT_HEADER_V2

§

impl UnwindSafe for APPLICATIONLAUNCH_SETTING_VALUE

§

impl UnwindSafe for ASSEMBLY_FILE_DETAILED_INFORMATION

§

impl UnwindSafe for BATTERY_REPORTING_SCALE

§

impl UnwindSafe for CACHE_DESCRIPTOR

§

impl UnwindSafe for CACHE_RELATIONSHIP

§

impl UnwindSafe for CFG_CALL_TARGET_INFO

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTES_INFORMATION

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTES_INFORMATION_Attribute

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1_Values

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTE_V1

§

impl UnwindSafe for CLAIM_SECURITY_ATTRIBUTE_V1_Values

§

impl UnwindSafe for CM_POWER_DATA

§

impl UnwindSafe for COMPATIBILITY_CONTEXT_ELEMENT

§

impl UnwindSafe for CONTEXT

§

impl UnwindSafe for CONTEXT_u

§

impl UnwindSafe for CONTEXT_u_s

§

impl UnwindSafe for DISPATCHER_CONTEXT

§

impl UnwindSafe for ENCLAVE_CREATE_INFO_SGX

§

impl UnwindSafe for ENCLAVE_INIT_INFO_SGX

§

impl UnwindSafe for ENLISTMENT_BASIC_INFORMATION

§

impl UnwindSafe for ENLISTMENT_CRM_INFORMATION

§

impl UnwindSafe for EVENTLOGRECORD

§

impl UnwindSafe for EVENTSFORLOGFILE

§

impl UnwindSafe for EXCEPTION_POINTERS

§

impl UnwindSafe for EXCEPTION_RECORD32

§

impl UnwindSafe for EXCEPTION_RECORD64

§

impl UnwindSafe for EXCEPTION_RECORD

§

impl UnwindSafe for EXCEPTION_REGISTRATION_RECORD

§

impl UnwindSafe for FILE_ID_128

§

impl UnwindSafe for FILE_NOTIFY_INFORMATION

§

impl UnwindSafe for FILE_SEGMENT_ELEMENT

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::FLOAT128

§

impl UnwindSafe for FPO_DATA

§

impl UnwindSafe for GENERIC_MAPPING

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::GROUP_AFFINITY

§

impl UnwindSafe for GROUP_RELATIONSHIP

§

impl UnwindSafe for HARDWARE_COUNTER_DATA

§

impl UnwindSafe for HEAP_OPTIMIZE_RESOURCES_INFORMATION

§

impl UnwindSafe for HIBERFILE_BUCKET

§

impl UnwindSafe for IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY

§

impl UnwindSafe for IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY

§

impl UnwindSafe for IMAGE_ARCHITECTURE_ENTRY

§

impl UnwindSafe for IMAGE_ARCHITECTURE_HEADER

§

impl UnwindSafe for IMAGE_ARCHIVE_MEMBER_HEADER

§

impl UnwindSafe for IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY

§

impl UnwindSafe for IMAGE_ARM_RUNTIME_FUNCTION_ENTRY

§

impl UnwindSafe for IMAGE_AUX_SYMBOL

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_CRC

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_EX

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_EX_CRC

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_EX_File

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_EX_Section

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_EX_Sym

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_EX_s

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_File

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Section

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Sym

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Sym_FcnAry

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Sym_FcnAry_Array

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Sym_FcnAry_Function

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Sym_Misc

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_Sym_Misc_LnSz

§

impl UnwindSafe for IMAGE_AUX_SYMBOL_TOKEN_DEF

§

impl UnwindSafe for IMAGE_BASE_RELOCATION

§

impl UnwindSafe for IMAGE_BOUND_FORWARDER_REF

§

impl UnwindSafe for IMAGE_BOUND_IMPORT_DESCRIPTOR

§

impl UnwindSafe for IMAGE_CE_RUNTIME_FUNCTION_ENTRY

§

impl UnwindSafe for IMAGE_COFF_SYMBOLS_HEADER

§

impl UnwindSafe for IMAGE_COR20_HEADER

§

impl UnwindSafe for IMAGE_COR20_HEADER_u

§

impl UnwindSafe for IMAGE_DATA_DIRECTORY

§

impl UnwindSafe for IMAGE_DEBUG_DIRECTORY

§

impl UnwindSafe for IMAGE_DEBUG_MISC

§

impl UnwindSafe for IMAGE_DELAYLOAD_DESCRIPTOR

§

impl UnwindSafe for IMAGE_DELAYLOAD_DESCRIPTOR_Attributes

§

impl UnwindSafe for IMAGE_DOS_HEADER

§

impl UnwindSafe for IMAGE_DYNAMIC_RELOCATION32

§

impl UnwindSafe for IMAGE_DYNAMIC_RELOCATION32_V2

§

impl UnwindSafe for IMAGE_DYNAMIC_RELOCATION64

§

impl UnwindSafe for IMAGE_DYNAMIC_RELOCATION64_V2

§

impl UnwindSafe for IMAGE_DYNAMIC_RELOCATION_TABLE

§

impl UnwindSafe for IMAGE_EPILOGUE_DYNAMIC_RELOCATION_HEADER

§

impl UnwindSafe for IMAGE_EXPORT_DIRECTORY

§

impl UnwindSafe for IMAGE_FILE_HEADER

§

impl UnwindSafe for IMAGE_FUNCTION_ENTRY64

§

impl UnwindSafe for IMAGE_FUNCTION_ENTRY64_u

§

impl UnwindSafe for IMAGE_FUNCTION_ENTRY

§

impl UnwindSafe for IMAGE_HOT_PATCH_BASE

§

impl UnwindSafe for IMAGE_HOT_PATCH_HASHES

§

impl UnwindSafe for IMAGE_HOT_PATCH_INFO

§

impl UnwindSafe for IMAGE_IMPORT_BY_NAME

§

impl UnwindSafe for IMAGE_IMPORT_DESCRIPTOR

§

impl UnwindSafe for IMAGE_IMPORT_DESCRIPTOR_u

§

impl UnwindSafe for IMAGE_LINENUMBER

§

impl UnwindSafe for IMAGE_LINENUMBER_Type

§

impl UnwindSafe for IMAGE_LOAD_CONFIG_CODE_INTEGRITY

§

impl UnwindSafe for IMAGE_LOAD_CONFIG_DIRECTORY32

§

impl UnwindSafe for IMAGE_LOAD_CONFIG_DIRECTORY64

§

impl UnwindSafe for IMAGE_NT_HEADERS32

§

impl UnwindSafe for IMAGE_NT_HEADERS64

§

impl UnwindSafe for IMAGE_OPTIONAL_HEADER32

§

impl UnwindSafe for IMAGE_OPTIONAL_HEADER64

§

impl UnwindSafe for IMAGE_OS2_HEADER

§

impl UnwindSafe for IMAGE_PROLOGUE_DYNAMIC_RELOCATION_HEADER

§

impl UnwindSafe for IMAGE_RELOCATION

§

impl UnwindSafe for IMAGE_RELOCATION_u

§

impl UnwindSafe for IMAGE_RESOURCE_DATA_ENTRY

§

impl UnwindSafe for IMAGE_RESOURCE_DIRECTORY

§

impl UnwindSafe for IMAGE_RESOURCE_DIRECTORY_ENTRY

§

impl UnwindSafe for IMAGE_RESOURCE_DIRECTORY_ENTRY_u

§

impl UnwindSafe for IMAGE_RESOURCE_DIRECTORY_ENTRY_u_s

§

impl UnwindSafe for IMAGE_RESOURCE_DIRECTORY_STRING

§

impl UnwindSafe for IMAGE_RESOURCE_DIR_STRING_U

§

impl UnwindSafe for IMAGE_ROM_HEADERS

§

impl UnwindSafe for IMAGE_ROM_OPTIONAL_HEADER

§

impl UnwindSafe for IMAGE_RUNTIME_FUNCTION_ENTRY_u

§

impl UnwindSafe for IMAGE_SECTION_HEADER

§

impl UnwindSafe for IMAGE_SECTION_HEADER_Misc

§

impl UnwindSafe for IMAGE_SEPARATE_DEBUG_HEADER

§

impl UnwindSafe for IMAGE_SYMBOL

§

impl UnwindSafe for IMAGE_SYMBOL_EX

§

impl UnwindSafe for IMAGE_SYMBOL_EX_N

§

impl UnwindSafe for IMAGE_SYMBOL_EX_N_Name

§

impl UnwindSafe for IMAGE_SYMBOL_N

§

impl UnwindSafe for IMAGE_SYMBOL_N_Name

§

impl UnwindSafe for IMAGE_THUNK_DATA32

§

impl UnwindSafe for IMAGE_THUNK_DATA32_u1

§

impl UnwindSafe for IMAGE_THUNK_DATA64

§

impl UnwindSafe for IMAGE_THUNK_DATA64_u1

§

impl UnwindSafe for IMAGE_TLS_DIRECTORY32

§

impl UnwindSafe for IMAGE_TLS_DIRECTORY64

§

impl UnwindSafe for IMAGE_VXD_HEADER

§

impl UnwindSafe for IMPORT_OBJECT_HEADER

§

impl UnwindSafe for IMPORT_OBJECT_HEADER_u

§

impl UnwindSafe for IO_COUNTERS

§

impl UnwindSafe for JOBOBJECT_ASSOCIATE_COMPLETION_PORT

§

impl UnwindSafe for JOBOBJECT_BASIC_ACCOUNTING_INFORMATION

§

impl UnwindSafe for JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION

§

impl UnwindSafe for JOBOBJECT_BASIC_LIMIT_INFORMATION

§

impl UnwindSafe for JOBOBJECT_BASIC_PROCESS_ID_LIST

§

impl UnwindSafe for JOBOBJECT_BASIC_UI_RESTRICTIONS

§

impl UnwindSafe for JOBOBJECT_CPU_RATE_CONTROL_INFORMATION

§

impl UnwindSafe for JOBOBJECT_CPU_RATE_CONTROL_INFORMATION_u

§

impl UnwindSafe for JOBOBJECT_CPU_RATE_CONTROL_INFORMATION_u_s

§

impl UnwindSafe for JOBOBJECT_END_OF_JOB_TIME_INFORMATION

§

impl UnwindSafe for JOBOBJECT_EXTENDED_LIMIT_INFORMATION

§

impl UnwindSafe for JOBOBJECT_IO_ATTRIBUTION_INFORMATION

§

impl UnwindSafe for JOBOBJECT_IO_ATTRIBUTION_STATS

§

impl UnwindSafe for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE

§

impl UnwindSafe for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2

§

impl UnwindSafe for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3

§

impl UnwindSafe for JOBOBJECT_JOBSET_INFORMATION

§

impl UnwindSafe for JOBOBJECT_LIMIT_VIOLATION_INFORMATION

§

impl UnwindSafe for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2

§

impl UnwindSafe for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2_u1

§

impl UnwindSafe for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2_u2

§

impl UnwindSafe for JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2_u3

§

impl UnwindSafe for JOBOBJECT_NET_RATE_CONTROL_INFORMATION

§

impl UnwindSafe for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION

§

impl UnwindSafe for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2

§

impl UnwindSafe for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2_u1

§

impl UnwindSafe for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2_u2

§

impl UnwindSafe for JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2_u3

§

impl UnwindSafe for JOBOBJECT_SECURITY_LIMIT_INFORMATION

§

impl UnwindSafe for JOB_SET_ARRAY

§

impl UnwindSafe for KNONVOLATILE_CONTEXT_POINTERS

§

impl UnwindSafe for KNONVOLATILE_CONTEXT_POINTERS_u1

§

impl UnwindSafe for KNONVOLATILE_CONTEXT_POINTERS_u1_s

§

impl UnwindSafe for KNONVOLATILE_CONTEXT_POINTERS_u2

§

impl UnwindSafe for KNONVOLATILE_CONTEXT_POINTERS_u2_s

§

impl UnwindSafe for KTMOBJECT_CURSOR

§

impl UnwindSafe for LARGE_INTEGER

§

impl UnwindSafe for LDT_ENTRY

§

impl UnwindSafe for LDT_ENTRY_Bits

§

impl UnwindSafe for LDT_ENTRY_Bytes

§

impl UnwindSafe for LDT_ENTRY_HighWord

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::LIST_ENTRY32

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::LIST_ENTRY64

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::LIST_ENTRY

§

impl UnwindSafe for LUID

§

impl UnwindSafe for LUID_AND_ATTRIBUTES

§

impl UnwindSafe for M128A

§

impl UnwindSafe for MEMORY_BASIC_INFORMATION32

§

impl UnwindSafe for MEMORY_BASIC_INFORMATION64

§

impl UnwindSafe for MEMORY_BASIC_INFORMATION

§

impl UnwindSafe for MESSAGE_RESOURCE_BLOCK

§

impl UnwindSafe for MESSAGE_RESOURCE_DATA

§

impl UnwindSafe for MESSAGE_RESOURCE_ENTRY

§

impl UnwindSafe for NETWORK_APP_INSTANCE_EA

§

impl UnwindSafe for NON_PAGED_DEBUG_INFO

§

impl UnwindSafe for NOTIFY_USER_POWER_SETTING

§

impl UnwindSafe for NT_TIB32

§

impl UnwindSafe for NT_TIB32_u

§

impl UnwindSafe for NT_TIB64

§

impl UnwindSafe for NT_TIB64_u

§

impl UnwindSafe for NT_TIB

§

impl UnwindSafe for NT_TIB_u

§

impl UnwindSafe for NUMA_NODE_RELATIONSHIP

§

impl UnwindSafe for NV_MEMORY_RANGE

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::OBJECTID

§

impl UnwindSafe for OBJECT_TYPE_LIST

§

impl UnwindSafe for OSVERSIONINFOA

§

impl UnwindSafe for OSVERSIONINFOEXA

§

impl UnwindSafe for OSVERSIONINFOEXW

§

impl UnwindSafe for OSVERSIONINFOW

§

impl UnwindSafe for PACKEDEVENTINFO

§

impl UnwindSafe for PERFORMANCE_DATA

§

impl UnwindSafe for POWER_ACTION_POLICY

§

impl UnwindSafe for POWER_IDLE_RESILIENCY

§

impl UnwindSafe for POWER_MONITOR_INVOCATION

§

impl UnwindSafe for POWER_PLATFORM_INFORMATION

§

impl UnwindSafe for POWER_SESSION_CONNECT

§

impl UnwindSafe for POWER_SESSION_RIT_STATE

§

impl UnwindSafe for POWER_SESSION_TIMEOUTS

§

impl UnwindSafe for POWER_SESSION_WINLOGON

§

impl UnwindSafe for POWER_USER_PRESENCE

§

impl UnwindSafe for PPM_IDLESTATE_EVENT

§

impl UnwindSafe for PPM_IDLE_ACCOUNTING

§

impl UnwindSafe for PPM_IDLE_ACCOUNTING_EX

§

impl UnwindSafe for PPM_IDLE_STATE_ACCOUNTING

§

impl UnwindSafe for PPM_IDLE_STATE_ACCOUNTING_EX

§

impl UnwindSafe for PPM_IDLE_STATE_BUCKET_EX

§

impl UnwindSafe for PPM_PERFSTATE_DOMAIN_EVENT

§

impl UnwindSafe for PPM_PERFSTATE_EVENT

§

impl UnwindSafe for PPM_THERMALCHANGE_EVENT

§

impl UnwindSafe for PPM_THERMAL_POLICY_EVENT

§

impl UnwindSafe for PPM_WMI_IDLE_STATE

§

impl UnwindSafe for PPM_WMI_IDLE_STATES

§

impl UnwindSafe for PPM_WMI_IDLE_STATES_EX

§

impl UnwindSafe for PPM_WMI_LEGACY_PERFSTATE

§

impl UnwindSafe for PPM_WMI_PERF_STATE

§

impl UnwindSafe for PPM_WMI_PERF_STATES

§

impl UnwindSafe for PPM_WMI_PERF_STATES_EX

§

impl UnwindSafe for PRIVILEGE_SET

§

impl UnwindSafe for PROCESSOR_GROUP_INFO

§

impl UnwindSafe for PROCESSOR_IDLESTATE_INFO

§

impl UnwindSafe for PROCESSOR_IDLESTATE_POLICY

§

impl UnwindSafe for PROCESSOR_IDLESTATE_POLICY_Flags

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::PROCESSOR_NUMBER

§

impl UnwindSafe for PROCESSOR_PERFSTATE_POLICY

§

impl UnwindSafe for PROCESSOR_PERFSTATE_POLICY_u

§

impl UnwindSafe for PROCESSOR_PERFSTATE_POLICY_u_Flags

§

impl UnwindSafe for PROCESSOR_POWER_POLICY

§

impl UnwindSafe for PROCESSOR_POWER_POLICY_INFO

§

impl UnwindSafe for PROCESSOR_RELATIONSHIP

§

impl UnwindSafe for PROCESS_MITIGATION_ASLR_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_CHILD_PROCESS_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_DEP_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_DYNAMIC_CODE_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_FONT_DISABLE_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_IMAGE_LOAD_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY

§

impl UnwindSafe for PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY

§

impl UnwindSafe for QUOTA_LIMITS

§

impl UnwindSafe for QUOTA_LIMITS_EX

§

impl UnwindSafe for RATE_QUOTA_LIMIT

§

impl UnwindSafe for REPARSE_GUID_DATA_BUFFER

§

impl UnwindSafe for REPARSE_GUID_DATA_BUFFER_GenericReparseBuffer

§

impl UnwindSafe for RESOURCEMANAGER_BASIC_INFORMATION

§

impl UnwindSafe for RESOURCEMANAGER_COMPLETION_INFORMATION

§

impl UnwindSafe for RESUME_PERFORMANCE

§

impl UnwindSafe for RTL_BARRIER

§

impl UnwindSafe for RTL_CONDITION_VARIABLE

§

impl UnwindSafe for RTL_CRITICAL_SECTION

§

impl UnwindSafe for RTL_CRITICAL_SECTION_DEBUG

§

impl UnwindSafe for RTL_RUN_ONCE

§

impl UnwindSafe for RTL_SRWLOCK

§

impl UnwindSafe for SCOPE_TABLE_AMD64

§

impl UnwindSafe for SCOPE_TABLE_AMD64_ScopeRecord

§

impl UnwindSafe for SCOPE_TABLE_ARM64

§

impl UnwindSafe for SCOPE_TABLE_ARM64_ScopeRecord

§

impl UnwindSafe for SCRUB_DATA_INPUT

§

impl UnwindSafe for SCRUB_DATA_OUTPUT

§

impl UnwindSafe for SCRUB_PARITY_EXTENT

§

impl UnwindSafe for SCRUB_PARITY_EXTENT_DATA

§

impl UnwindSafe for SECURITY_CAPABILITIES

§

impl UnwindSafe for SECURITY_DESCRIPTOR

§

impl UnwindSafe for SECURITY_DESCRIPTOR_RELATIVE

§

impl UnwindSafe for SECURITY_OBJECT_AI_PARAMS

§

impl UnwindSafe for SECURITY_QUALITY_OF_SERVICE

§

impl UnwindSafe for SERVERSILO_BASIC_INFORMATION

§

impl UnwindSafe for SET_POWER_SETTING_VALUE

§

impl UnwindSafe for SE_ACCESS_REPLY

§

impl UnwindSafe for SE_ACCESS_REQUEST

§

impl UnwindSafe for SE_IMPERSONATION_STATE

§

impl UnwindSafe for SE_SECURITY_DESCRIPTOR

§

impl UnwindSafe for SE_SID

§

impl UnwindSafe for SE_TOKEN_USER

§

impl UnwindSafe for SE_TOKEN_USER_u1

§

impl UnwindSafe for SE_TOKEN_USER_u2

§

impl UnwindSafe for SHARED_VIRTUAL_DISK_SUPPORT

§

impl UnwindSafe for SID

§

impl UnwindSafe for SID_AND_ATTRIBUTES

§

impl UnwindSafe for SID_AND_ATTRIBUTES_HASH

§

impl UnwindSafe for SID_IDENTIFIER_AUTHORITY

§

impl UnwindSafe for SILOOBJECT_BASIC_INFORMATION

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::um::winnt::SINGLE_LIST_ENTRY

§

impl UnwindSafe for SLIST_ENTRY

§

impl UnwindSafe for SLIST_HEADER

§

impl UnwindSafe for SLIST_HEADER_HeaderX64

§

impl UnwindSafe for SLIST_HEADER_s

§

impl UnwindSafe for SUPPORTED_OS_INFO

§

impl UnwindSafe for SYSTEM_ACCESS_FILTER_ACE

§

impl UnwindSafe for SYSTEM_ALARM_ACE

§

impl UnwindSafe for SYSTEM_ALARM_CALLBACK_ACE

§

impl UnwindSafe for SYSTEM_ALARM_CALLBACK_OBJECT_ACE

§

impl UnwindSafe for SYSTEM_ALARM_OBJECT_ACE

§

impl UnwindSafe for SYSTEM_AUDIT_ACE

§

impl UnwindSafe for SYSTEM_AUDIT_CALLBACK_ACE

§

impl UnwindSafe for SYSTEM_AUDIT_CALLBACK_OBJECT_ACE

§

impl UnwindSafe for SYSTEM_AUDIT_OBJECT_ACE

§

impl UnwindSafe for SYSTEM_BATTERY_STATE

§

impl UnwindSafe for SYSTEM_CPU_SET_INFORMATION

§

impl UnwindSafe for SYSTEM_CPU_SET_INFORMATION_CpuSet

§

impl UnwindSafe for SYSTEM_LOGICAL_PROCESSOR_INFORMATION

§

impl UnwindSafe for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX

§

impl UnwindSafe for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX_u

§

impl UnwindSafe for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_NumaNode

§

impl UnwindSafe for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_ProcessorCore

§

impl UnwindSafe for SYSTEM_LOGICAL_PROCESSOR_INFORMATION_u

§

impl UnwindSafe for SYSTEM_MANDATORY_LABEL_ACE

§

impl UnwindSafe for SYSTEM_POWER_CAPABILITIES

§

impl UnwindSafe for SYSTEM_POWER_LEVEL

§

impl UnwindSafe for SYSTEM_POWER_POLICY

§

impl UnwindSafe for SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION

§

impl UnwindSafe for SYSTEM_PROCESS_TRUST_LABEL_ACE

§

impl UnwindSafe for SYSTEM_RESOURCE_ATTRIBUTE_ACE

§

impl UnwindSafe for SYSTEM_SCOPED_POLICY_ID_ACE

§

impl UnwindSafe for TAPE_CREATE_PARTITION

§

impl UnwindSafe for TAPE_ERASE

§

impl UnwindSafe for TAPE_GET_DRIVE_PARAMETERS

§

impl UnwindSafe for TAPE_GET_MEDIA_PARAMETERS

§

impl UnwindSafe for TAPE_GET_POSITION

§

impl UnwindSafe for TAPE_PREPARE

§

impl UnwindSafe for TAPE_SET_DRIVE_PARAMETERS

§

impl UnwindSafe for TAPE_SET_MEDIA_PARAMETERS

§

impl UnwindSafe for TAPE_SET_POSITION

§

impl UnwindSafe for TAPE_WMI_OPERATIONS

§

impl UnwindSafe for TAPE_WRITE_MARKS

§

impl UnwindSafe for TOKEN_ACCESS_INFORMATION

§

impl UnwindSafe for TOKEN_APPCONTAINER_INFORMATION

§

impl UnwindSafe for TOKEN_AUDIT_POLICY

§

impl UnwindSafe for TOKEN_BNO_ISOLATION_INFORMATION

§

impl UnwindSafe for TOKEN_CONTROL

§

impl UnwindSafe for TOKEN_DEFAULT_DACL

§

impl UnwindSafe for TOKEN_DEVICE_CLAIMS

§

impl UnwindSafe for TOKEN_ELEVATION

§

impl UnwindSafe for TOKEN_GROUPS

§

impl UnwindSafe for TOKEN_GROUPS_AND_PRIVILEGES

§

impl UnwindSafe for TOKEN_LINKED_TOKEN

§

impl UnwindSafe for TOKEN_MANDATORY_LABEL

§

impl UnwindSafe for TOKEN_MANDATORY_POLICY

§

impl UnwindSafe for TOKEN_ORIGIN

§

impl UnwindSafe for TOKEN_OWNER

§

impl UnwindSafe for TOKEN_PRIMARY_GROUP

§

impl UnwindSafe for TOKEN_PRIVILEGES

§

impl UnwindSafe for TOKEN_SID_INFORMATION

§

impl UnwindSafe for TOKEN_SOURCE

§

impl UnwindSafe for TOKEN_STATISTICS

§

impl UnwindSafe for TOKEN_USER

§

impl UnwindSafe for TOKEN_USER_CLAIMS

§

impl UnwindSafe for TP_CALLBACK_ENVIRON_V3

§

impl UnwindSafe for TP_CALLBACK_ENVIRON_V3_u

§

impl UnwindSafe for TP_CALLBACK_ENVIRON_V3_u_s

§

impl UnwindSafe for TP_CALLBACK_INSTANCE

§

impl UnwindSafe for TP_CLEANUP_GROUP

§

impl UnwindSafe for TP_IO

§

impl UnwindSafe for TP_POOL

§

impl UnwindSafe for TP_POOL_STACK_INFORMATION

§

impl UnwindSafe for TP_TIMER

§

impl UnwindSafe for TP_WAIT

§

impl UnwindSafe for TP_WORK

§

impl UnwindSafe for TRANSACTIONMANAGER_BASIC_INFORMATION

§

impl UnwindSafe for TRANSACTIONMANAGER_LOGPATH_INFORMATION

§

impl UnwindSafe for TRANSACTIONMANAGER_LOG_INFORMATION

§

impl UnwindSafe for TRANSACTIONMANAGER_OLDEST_INFORMATION

§

impl UnwindSafe for TRANSACTIONMANAGER_RECOVERY_INFORMATION

§

impl UnwindSafe for TRANSACTION_BASIC_INFORMATION

§

impl UnwindSafe for TRANSACTION_BIND_INFORMATION

§

impl UnwindSafe for TRANSACTION_ENLISTMENTS_INFORMATION

§

impl UnwindSafe for TRANSACTION_ENLISTMENT_PAIR

§

impl UnwindSafe for TRANSACTION_LIST_ENTRY

§

impl UnwindSafe for TRANSACTION_LIST_INFORMATION

§

impl UnwindSafe for TRANSACTION_PROPERTIES_INFORMATION

§

impl UnwindSafe for TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION

§

impl UnwindSafe for ULARGE_INTEGER

§

impl UnwindSafe for UMS_CREATE_THREAD_ATTRIBUTES

§

impl UnwindSafe for UNWIND_HISTORY_TABLE

§

impl UnwindSafe for UNWIND_HISTORY_TABLE_ENTRY

§

impl UnwindSafe for WOW64_ARCHITECTURE_INFORMATION

§

impl UnwindSafe for WOW64_CONTEXT

§

impl UnwindSafe for WOW64_DESCRIPTOR_TABLE_ENTRY

§

impl UnwindSafe for WOW64_FLOATING_SAVE_AREA

§

impl UnwindSafe for WOW64_LDT_ENTRY

§

impl UnwindSafe for WOW64_LDT_ENTRY_Bits

§

impl UnwindSafe for WOW64_LDT_ENTRY_Bytes

§

impl UnwindSafe for WOW64_LDT_ENTRY_HighWord

§

impl UnwindSafe for XSAVE_AREA

§

impl UnwindSafe for XSAVE_AREA_HEADER

§

impl UnwindSafe for XSAVE_FORMAT

§

impl UnwindSafe for XSTATE_CONFIGURATION

§

impl UnwindSafe for XSTATE_CONTEXT

§

impl UnwindSafe for XSTATE_FEATURE

§

impl UnwindSafe for _IMAGE_RUNTIME_FUNCTION_ENTRY

§

impl UnwindSafe for VALENTA

§

impl UnwindSafe for VALENTW

§

impl UnwindSafe for ACCEL

§

impl UnwindSafe for ALTTABINFO

§

impl UnwindSafe for ANIMATIONINFO

§

impl UnwindSafe for BSMINFO

§

impl UnwindSafe for CBTACTIVATESTRUCT

§

impl UnwindSafe for CBT_CREATEWNDA

§

impl UnwindSafe for CBT_CREATEWNDW

§

impl UnwindSafe for CHANGEFILTERSTRUCT

§

impl UnwindSafe for COMBOBOXINFO

§

impl UnwindSafe for COMPAREITEMSTRUCT

§

impl UnwindSafe for COPYDATASTRUCT

§

impl UnwindSafe for CREATESTRUCTA

§

impl UnwindSafe for CREATESTRUCTW

§

impl UnwindSafe for CURSORINFO

§

impl UnwindSafe for CWPRETSTRUCT

§

impl UnwindSafe for CWPSTRUCT

§

impl UnwindSafe for DEBUGHOOKINFO

§

impl UnwindSafe for DELETEITEMSTRUCT

§

impl UnwindSafe for DLGITEMTEMPLATE

§

impl UnwindSafe for DLGTEMPLATE

§

impl UnwindSafe for DRAWITEMSTRUCT

§

impl UnwindSafe for DRAWTEXTPARAMS

§

impl UnwindSafe for DROPSTRUCT

§

impl UnwindSafe for EVENTMSG

§

impl UnwindSafe for FLASHWINFO

§

impl UnwindSafe for GUITHREADINFO

§

impl UnwindSafe for HARDWAREHOOKSTRUCT

§

impl UnwindSafe for HARDWAREINPUT

§

impl UnwindSafe for HELPINFO

§

impl UnwindSafe for HIGHCONTRASTA

§

impl UnwindSafe for HIGHCONTRASTW

§

impl UnwindSafe for ICONINFO

§

impl UnwindSafe for INPUT

§

impl UnwindSafe for INPUT_INJECTION_VALUE

§

impl UnwindSafe for INPUT_TRANSFORM

§

impl UnwindSafe for INPUT_u

§

impl UnwindSafe for KBDLLHOOKSTRUCT

§

impl UnwindSafe for KEYBDINPUT

§

impl UnwindSafe for LASTINPUTINFO

§

impl UnwindSafe for MDINEXTMENU

§

impl UnwindSafe for MEASUREITEMSTRUCT

§

impl UnwindSafe for MENUBARINFO

§

impl UnwindSafe for MENUGETOBJECTINFO

§

impl UnwindSafe for MENUINFO

§

impl UnwindSafe for MENUITEMINFOA

§

impl UnwindSafe for MENUITEMINFOW

§

impl UnwindSafe for MINMAXINFO

§

impl UnwindSafe for MONITORINFO

§

impl UnwindSafe for MONITORINFOEXA

§

impl UnwindSafe for MONITORINFOEXW

§

impl UnwindSafe for MOUSEHOOKSTRUCT

§

impl UnwindSafe for MOUSEHOOKSTRUCTEX

§

impl UnwindSafe for MOUSEINPUT

§

impl UnwindSafe for MOUSEMOVEPOINT

§

impl UnwindSafe for MSG

§

impl UnwindSafe for MSGBOXPARAMSA

§

impl UnwindSafe for MSGBOXPARAMSW

§

impl UnwindSafe for MSLLHOOKSTRUCT

§

impl UnwindSafe for NCCALCSIZE_PARAMS

§

impl UnwindSafe for NMHDR

§

impl UnwindSafe for NONCLIENTMETRICSA

§

impl UnwindSafe for NONCLIENTMETRICSW

§

impl UnwindSafe for PAINTSTRUCT

§

impl UnwindSafe for POINTER_INFO

§

impl UnwindSafe for POINTER_PEN_INFO

§

impl UnwindSafe for POINTER_TOUCH_INFO

§

impl UnwindSafe for POINTER_TYPE_INFO

§

impl UnwindSafe for POINTER_TYPE_INFO_u

§

impl UnwindSafe for POWERBROADCAST_SETTING

§

impl UnwindSafe for RAWHID

§

impl UnwindSafe for RAWINPUT

§

impl UnwindSafe for RAWINPUTDEVICE

§

impl UnwindSafe for RAWINPUTDEVICELIST

§

impl UnwindSafe for RAWINPUTHEADER

§

impl UnwindSafe for RAWINPUT_data

§

impl UnwindSafe for RAWKEYBOARD

§

impl UnwindSafe for RAWMOUSE

§

impl UnwindSafe for RID_DEVICE_INFO

§

impl UnwindSafe for RID_DEVICE_INFO_HID

§

impl UnwindSafe for RID_DEVICE_INFO_KEYBOARD

§

impl UnwindSafe for RID_DEVICE_INFO_MOUSE

§

impl UnwindSafe for RID_DEVICE_INFO_u

§

impl UnwindSafe for SCROLLBARINFO

§

impl UnwindSafe for SCROLLINFO

§

impl UnwindSafe for SHELLHOOKINFO

§

impl UnwindSafe for STYLESTRUCT

§

impl UnwindSafe for TITLEBARINFO

§

impl UnwindSafe for TITLEBARINFOEX

§

impl UnwindSafe for TOUCHINPUT

§

impl UnwindSafe for TOUCH_HIT_TESTING_INPUT

§

impl UnwindSafe for TOUCH_HIT_TESTING_PROXIMITY_EVALUATION

§

impl UnwindSafe for TPMPARAMS

§

impl UnwindSafe for TRACKMOUSEEVENT

§

impl UnwindSafe for UPDATELAYEREDWINDOWINFO

§

impl UnwindSafe for USAGE_PROPERTIES

§

impl UnwindSafe for USEROBJECTFLAGS

§

impl UnwindSafe for WINDOWINFO

§

impl UnwindSafe for WINDOWPLACEMENT

§

impl UnwindSafe for WINDOWPOS

§

impl UnwindSafe for WNDCLASSA

§

impl UnwindSafe for WNDCLASSEXA

§

impl UnwindSafe for WNDCLASSEXW

§

impl UnwindSafe for WNDCLASSW

§

impl UnwindSafe for WTSSESSION_NOTIFICATION

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::ascii::EscapeDefault

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::char::EscapeDebug

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::char::EscapeDefault

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for CStr

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for Error

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for NonZeroI8

§

impl UnwindSafe for NonZeroI16

§

impl UnwindSafe for NonZeroI32

§

impl UnwindSafe for NonZeroI64

§

impl UnwindSafe for NonZeroI128

§

impl UnwindSafe for NonZeroIsize

§

impl UnwindSafe for NonZeroU8

§

impl UnwindSafe for NonZeroU16

§

impl UnwindSafe for NonZeroU32

§

impl UnwindSafe for NonZeroU64

§

impl UnwindSafe for NonZeroU128

§

impl UnwindSafe for NonZeroUsize

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for flo_render_gl_offscreen::winapi::_core::ptr::Alignment

§

impl UnwindSafe for TimSortRun

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for Alignment

§

impl UnwindSafe for Argument

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Count

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FormatSpec

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Number

§

impl UnwindSafe for Sign

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

impl<'a> !UnwindSafe for Demand<'a>

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> !UnwindSafe for Arguments<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for flo_render_gl_offscreen::winapi::_core::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for flo_render_gl_offscreen::winapi::_core::option::Iter<'a, A>where A: RefUnwindSafe,

§

impl<'a, F> UnwindSafe for CharPredicateSearcher<'a, F>where F: UnwindSafe,

§

impl<'a, I> !UnwindSafe for ByRefSized<'a, I>

§

impl<'a, P> UnwindSafe for MatchIndices<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for Matches<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for RMatchIndices<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for RMatches<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::RSplit<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::RSplitN<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for RSplitTerminator<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::Split<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::SplitInclusive<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::str::SplitN<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for SplitTerminator<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, T> !UnwindSafe for flo_render_gl_offscreen::winapi::_core::result::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for ChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for ChunksMut<'a, T>

§

impl<'a, T> !UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for RChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for RChunksMut<'a, T>

§

impl<'a, T> UnwindSafe for flo_render_gl_offscreen::winapi::_core::result::Iter<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for Chunks<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for ChunksExact<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::Iter<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for RChunks<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for RChunksExact<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for Windows<'a, T>where T: RefUnwindSafe,

§

impl<'a, T, P> !UnwindSafe for GroupByMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for RSplitMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for RSplitNMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitInclusiveMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitNMut<'a, T, P>

§

impl<'a, T, P> UnwindSafe for GroupBy<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::RSplit<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::RSplitN<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::Split<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::SplitInclusive<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::SplitN<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, const N: usize> !UnwindSafe for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> UnwindSafe for flo_render_gl_offscreen::winapi::_core::slice::ArrayChunks<'a, T, N>where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> UnwindSafe for ArrayWindows<'a, T, N>where T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'f> !UnwindSafe for VaListImpl<'f>

§

impl<A> UnwindSafe for Repeat<A>where A: UnwindSafe,

§

impl<A> UnwindSafe for flo_render_gl_offscreen::winapi::_core::option::IntoIter<A>where A: UnwindSafe,

§

impl<A, B> UnwindSafe for Chain<A, B>where A: UnwindSafe, B: UnwindSafe,

§

impl<A, B> UnwindSafe for Zip<A, B>where A: UnwindSafe, B: UnwindSafe,

§

impl<B, C> UnwindSafe for ControlFlow<B, C>where B: UnwindSafe, C: UnwindSafe,

§

impl<Dyn> !UnwindSafe for DynMetadata<Dyn>

§

impl<E, M> UnwindSafe for Capture<E, M>where E: UnwindSafe, M: UnwindSafe,

§

impl<F> UnwindSafe for PollFn<F>where F: UnwindSafe,

§

impl<F> UnwindSafe for FromFn<F>where F: UnwindSafe,

§

impl<F> UnwindSafe for OnceWith<F>where F: UnwindSafe,

§

impl<F> UnwindSafe for RepeatWith<F>where F: UnwindSafe,

§

impl<H> UnwindSafe for BuildHasherDefault<H>

§

impl<I> UnwindSafe for FromIter<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for DecodeUtf16<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Cloned<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Copied<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Cycle<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Enumerate<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Flatten<I>where I: UnwindSafe, <<I as Iterator>::Item as IntoIterator>::IntoIter: UnwindSafe,

§

impl<I> UnwindSafe for Fuse<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Intersperse<I>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I> UnwindSafe for Peekable<I>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I> UnwindSafe for Skip<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for StepBy<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Take<I>where I: UnwindSafe,

§

impl<I, F> UnwindSafe for FilterMap<I, F>where F: UnwindSafe, I: UnwindSafe,

§

impl<I, F> UnwindSafe for Inspect<I, F>where F: UnwindSafe, I: UnwindSafe,

§

impl<I, F> UnwindSafe for Map<I, F>where F: UnwindSafe, I: UnwindSafe,

§

impl<I, G> UnwindSafe for IntersperseWith<I, G>where G: UnwindSafe, I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I, P> UnwindSafe for Filter<I, P>where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for MapWhile<I, P>where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for SkipWhile<I, P>where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for TakeWhile<I, P>where I: UnwindSafe, P: UnwindSafe,

§

impl<I, St, F> UnwindSafe for Scan<I, St, F>where F: UnwindSafe, I: UnwindSafe, St: UnwindSafe,

§

impl<I, U, F> UnwindSafe for FlatMap<I, U, F>where F: UnwindSafe, I: UnwindSafe, <U as IntoIterator>::IntoIter: UnwindSafe,

§

impl<I, const N: usize> UnwindSafe for flo_render_gl_offscreen::winapi::_core::iter::ArrayChunks<I, N>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<Idx> UnwindSafe for Range<Idx>where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeFrom<Idx>where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeInclusive<Idx>where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeTo<Idx>where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeToInclusive<Idx>where Idx: UnwindSafe,

§

impl<P> UnwindSafe for Pin<P>where P: UnwindSafe,

§

impl<T> UnwindSafe for Bound<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Option<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Poll<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for OnceCell<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Reverse<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Pending<T>

§

impl<T> UnwindSafe for flo_render_gl_offscreen::winapi::_core::future::Ready<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Empty<T>

§

impl<T> UnwindSafe for flo_render_gl_offscreen::winapi::_core::iter::Once<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Rev<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Discriminant<T>where <T as DiscriminantKind>::Discriminant: UnwindSafe,

§

impl<T> UnwindSafe for Saturating<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Wrapping<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Yeet<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for flo_render_gl_offscreen::winapi::_core::result::IntoIter<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for AtomicPtr<T>where T: RefUnwindSafe,

§

impl<T> UnwindSafe for flo_render_gl_offscreen::winapi::_core::task::Ready<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for MaybeUninit<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Wrapper<T>where T: UnwindSafe,

§

impl<T, E> UnwindSafe for Result<T, E>where E: UnwindSafe, T: UnwindSafe,

§

impl<T, F> UnwindSafe for LazyCell<T, F>where F: UnwindSafe, T: UnwindSafe,

§

impl<T, F> UnwindSafe for Successors<T, F>where F: UnwindSafe, T: UnwindSafe,

§

impl<T, const LANES: usize> UnwindSafe for Mask<T, LANES>where T: UnwindSafe,

§

impl<T, const LANES: usize> UnwindSafe for Simd<T, LANES>where T: UnwindSafe,

§

impl<T, const N: usize> UnwindSafe for flo_render_gl_offscreen::winapi::_core::array::IntoIter<T, N>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for Cell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for RefCell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for SyncUnsafeCell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for UnsafeCell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for PhantomData<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for ManuallyDrop<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for Exclusive<T>where T: UnwindSafe,

§

impl<Y, R> UnwindSafe for GeneratorState<Y, R>where R: UnwindSafe, Y: UnwindSafe,

§

impl<const LANES: usize> UnwindSafe for LaneCount<LANES>

§

impl<const N: usize> UnwindSafe for GetManyMutError<N>