pub unsafe trait Function: Sized + Copy + Sync + 'static {
type Arguments;
type Output;
unsafe fn from_ptr(ptr: *const ()) -> Self;
fn to_ptr(&self) -> *const ();
}
Expand description
Trait representing a function that can be used as a target or detour for detouring.