pub type NativeFn = dyn RelonFunction;Expand description
Convenience alias for the dyn RelonFunction trait object. Hosts that
store native fns by trait object can write Arc<dyn NativeFn> instead
of Arc<dyn RelonFunction> — the two are interchangeable.