otherdimensional club

Note: Rust Programming Language

Attempting to familiarize myself with Rust, with the ultimate goal of being able to do Audio programming such as making my own VSTs. Here are notes on my self-learning and about the language in general.

how to learn

This videorecommends using a combination of:

"The book"

Notes on The Rust Book

Ch 2

The & indicates that this argument is a reference, which gives you a way to let multiple parts of your code access one piece of data without needing to copy that data into memory multiple times. References are a complex feature, and one of Rust’s major advantages is how safe and easy it is to use references.

Result is an enumeration, often called an enum, which is a type that can be in one of multiple possible states. We call each possible state a variant.


← back to notes