pub type PluginCreateFn = unsafe extern "C" fn() -> *mut dyn Plugin;Expand description
Function pointer type for creating a plugin instance
Plugins must export a function with this signature: #[no_mangle] pub extern "C" fn _plugin_create() -> *mut dyn Plugin