Behavior Inheritance in Rust

There is a common adage in Rust community that “Rust prefers composition over inheritance”. There is no inheritance support in common OO sense in Rust. You can achieve some OOP paradigm… Read more

Similar

Nio: An Async Runtime for Rust

Nio is an experimental async runtime for Rust. This project initially began as an experiment to explore alternative scheduling strategies.Tokio use work-stealing scheduler, It is very complex scheduler and require a ton of bookkeeping. Sadly, replacing th... (more…)

Read more »

The problem of effects in Rust

In a previous post, I shortly discussed the concept of “effects” and the parallels between them. In an unrelated post since then, Yosh Wuyts writes about the problem of trying to write fallible code inside of an iterator adapter that doesn’t support it. I... (more…)

Read more »