pub trait FunctionRef {
    type Target;

    fn set_target(&self, new_target: *const ());
    fn get_target(&self) -> Self::Target;
    fn get_ptr(&self) -> *const ();
}

Required Associated Types

Required Methods

Implementors