ubolonton / emacs-module-rs

Rust binding and tools for Emacs's dynamic modules
340 stars 22 forks source link

Serializing and Deserializing Plists or Hashmaps to Rust Structs #33

Open justinbarclay opened 3 years ago

justinbarclay commented 3 years ago

I'm curious if someone has made a Serde like serializer/deserializer for emacs-module-rs or if that's something that might be possible to implement?

ubolonton commented 3 years ago

It can be done for the Rust bindings of NodeJS: https://github.com/GabrielCastro/neon-serde. I think it's possible for Emacs Lisp, too.

justinbarclay commented 3 years ago

Awesome, thanks for the reference :)