pub trait NativeStoreExt {
// Required methods
fn set_trap_handler(
&mut self,
handler: Option<Box<dyn Fn(i32, *const siginfo_t, *const c_void) -> bool + Sync + Send>>,
);
fn signal_handler(
&self,
) -> Option<*const dyn Fn(i32, *const siginfo_t, *const c_void) -> bool + Sync + Send>;
}Expand description
The custom trait to access to all the sys functions in the
Store.