Type Alias in Rust

Rust is rich in sense of types. You can create your own structs and use generics. Rust even allows you to create a type alias. IMHO type ali… 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 »