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