Blog Posts

Recent posts

Rust - Iterator delegation

less than 1 minute read

Often, container structure having a single vector field needs to expose an iterator. The following code shows how to achieve this in a simple way.

Rust - error handling with thiserror crate

less than 1 minute read

One of the most difficult decision to make on developing an application is how we can handle errors. The thiserror crate provide an easy way to handle errors...