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§

source

const CLASS: [u8; 8]

Required Methods§

source

fn wrap(this: Self) -> *mut UnwindException

source

unsafe fn unwrap(ex: *mut UnwindException) -> Self

Object Safety§

This trait is not object safe.

Implementors§