Recently, I saw a post on r/rust
about creating a macro to check the execution time of a
specific function - and my brain just went DECORATOR
so... Let's try to build a small
proc_macro, shall we?
I've been wondering how hard would it be to write a data packer. And since Rust is my language for experimenting these things... Here we are! This short entry is about the few things I've experimented with when writing Easypack, my new toy.
I've been doing Rust for fun for at least a couple of years now, and I've
almost never had to use the unsafe
keyword. I think it is time to address
this lack, and what is a better case-study than implementing an heap based stack? ;)