Like most programming languages, Rust encourages the programmer to handle
errors in a particular way. Generally speaking, error handling is divided into
two broad categories: exceptions and return values. Rust opts for return
values. (more…)
Read more »
As a starting point for our journey into asynchronous programming, we'll write a simple web server. Web servers are great examples of massively concurrent programs. Our end goal is to create a performant and efficient server capable of powering high-traff... (more…)
Read more »
The run-time speed and memory usage of programs written in Rust should about the same as of programs written in C, but overall programming style of these languages is different enough that it's hard to generalize their speed. This is a summary of where th... (more…)
Read more »
Develop an async runtime like thing in Rust for educational purpose. - arun11299/How-not-to-async-rs... (more…)
Read more »