pub trait FnPtr: Copy + Clone {
// Required method
fn addr(self) -> *const ();
}
🔬This is a nightly-only experimental API. (
fn_ptr_trait
)Expand description
A common trait implemented by all function pointers.
Required Methods§
Object Safety§
This trait is not object safe.