Rust FFI Guide – Dynamic Loading and Plugins

What application wouldn’t be complete without the ability to add user-defined
plugins? In this chapter we take a small detour to visit the concept of
dynamically loading a library at runtime and registering it with our parent
application. Read more

Similar

Implementing Rust’s Dbg in Python

Rust has an amazing dbg macro that lets you quickly set up an expression printer that will also put in the source line. It also returns the value of the expression so you can even easily inline the printing when you want to! (more…)

Read more »