Skip to main content

Rust

Basics

The basics of Rust.

Macros

An overview and examples for the diverse types of macros you can use in Rust.

Frameworks

A collection of tutorials for some frameworks I often use.

Tricks

Allow everything what can be a str reference   fn do_something<S: AsRef<str>>(input: S) { le...

Cross compilation

You can cross compile your Rust code using the target specifier. For example: cargo build --targ...