pub trait FnPtr: Copy + Clone { // Required method fn addr(self) -> *const (); }
fn_ptr_trait
A common trait implemented by all function pointers.
Returns the address of the function pointer.