pub unsafe trait Exception {
const CLASS: [u8; 8];
// Required methods
fn wrap(this: Self) -> *mut UnwindException;
unsafe fn unwrap(ex: *mut UnwindException) -> Self;
}
Required Associated Constants§
Required Methods§
fn wrap(this: Self) -> *mut UnwindException
unsafe fn unwrap(ex: *mut UnwindException) -> Self
Object Safety§
This trait is not object safe.