Providing zero cost abstractions is a goal of the Rust programming language. In this post we’ll explore the perforamance costs of various methods of indirection. (more…)
Read more »
Purpose-built, Rust-native software engine for robotics - copper-project/copper-rs... (more…)
Read more »
Get yourself some fancy GitHub statistics in README - TeddyHuang-00/github-stats-rs... (more…)
Read more »
Rust traits have the neat property where you can use them either as generic bounds or as dynamic dispatch, with the &dyn MyTrait syntax. The latter is necessary in heterogeneous scenarios, where you want to use multiple concrete types together that al... (more…)
Read more »
TL;DR: On Linux, if you have Transparent Huge Pages enabled, you can try to run cargo with the environment variable MALLOC_CONF="thp:always,metadata_thp:always" for a potential ~5% speed boost. (more…)
Read more »