We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a16f60b commit fcd1f53Copy full SHA for fcd1f53
src/librustrt/unwind.rs
@@ -400,14 +400,18 @@ pub mod eabi {
400
#[allow(non_camel_case_types, non_snake_case)]
401
pub mod eabi {
402
pub use self::EXCEPTION_DISPOSITION::*;
403
+ use core::prelude::*;
404
use libunwind as uw;
405
use libc::{c_void, c_int};
406
407
#[repr(C)]
408
+ #[allow(missing_copy_implementations)]
409
pub struct EXCEPTION_RECORD;
410
411
412
pub struct CONTEXT;
413
414
415
pub struct DISPATCHER_CONTEXT;
416
417
@@ -418,6 +422,8 @@ pub mod eabi {
418
422
ExceptionCollidedUnwind
419
423
}
420
424
425
+ impl Copy for EXCEPTION_DISPOSITION {}
426
+
421
427
type _Unwind_Personality_Fn =
428
extern "C" fn(
429
version: c_int,
0 commit comments