Rust中的Emacs模块 | 这提供了对emacs-module的高级绑定, emacs-module是Emacs对动态模块的支持。 最小模块的代码如下所示: use emacs :: {defun, Env, Result , Value}; emacs :: plugin_is_GPL_compatible! (); #[emacs::module(name = "greeting" )] fn init (_: & Env) -> Result <()> { Ok (()) } #[defun] fn say_hello (env: & Env, name: String