Rust GUI framework performance comparison

A blog about programming, Rust, computer graphics and other stuff. Read more

Similar

Rust on Espressif Chips

It's been a while since my last post. I have some exciting news to share before going over the progress over the last nine months. I will be joining Espressif full time to work on Rust support for all of Espressif's chips, past, present and future! I am v... (more…)

Read more »

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… (more…)

Read more »

Golang and Rust = Vlang

Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero dependencies. Stable 0.2 release in early December 2019. https://vlang.io - vlang/v... (more…)

Read more »

Comparing Parallel Rust and C++

In this tutorial, we will implement a Rust program that attempts to utilize 100% of the theoretical capacity of three relatively modern, mid-range CPUs. We'll use an existing, highly efficient C++ implementation as a reference point to compare how our Rus... (more…)

Read more »

Command Line Applications in Rust

Rust is a statically compiled, fast language with great tooling and a rapidly growing ecosystem. That makes it a great fit for writing command line applications: They should be small, portable, and quick to run. Command line applications are also a great ... (more…)

Read more »