pub type PluginMethodFn = extern "C" fn(host: *const HostApi, receiver: GenericValue, args: *const GenericValue, nargs: usize) -> FfiReturn;Expand description
The signature of a plugin method: like PluginFn, but the receiver
(self) arrives as a separate first value, not in args. args/nargs
are the remaining arguments only.