We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a16f60b commit 934610dCopy full SHA for 934610d
src/librustrt/unwind.rs
@@ -404,10 +404,13 @@ pub mod eabi {
404
use libc::{c_void, c_int};
405
406
#[repr(C)]
407
+ #[allow(missing_copy_implementations)]
408
pub struct EXCEPTION_RECORD;
409
410
411
pub struct CONTEXT;
412
413
414
pub struct DISPATCHER_CONTEXT;
415
416
@@ -418,6 +421,8 @@ pub mod eabi {
418
421
ExceptionCollidedUnwind
419
422
}
420
423
424
+ impl Copy for EXCEPTION_DISPOSITION {}
425
+
426
type _Unwind_Personality_Fn =
427
extern "C" fn(
428
version: c_int,
0 commit comments