References and and in Rust

In Rust, there are two types of references: a shared reference and a mutable reference. A reference is denoted by &. A mutable reference is denoted as &mut. Read more

Similar

Pake โ€“ An Electron Alternative in Rust

๐Ÿคฑ๐Ÿป A simple way to make any web page a desktop application using Rust. ๐Ÿคฑ๐Ÿป ๅพˆ็ฎ€ๅ•็š„็”จ Rust ๆ‰“ๅŒ…็ฝ‘้กต็”Ÿๆˆๅพˆๅฐ็š„ๆกŒ้ข App - Pake/README_EN.md at master ยท tw93/Pake... (more…)

Read more »

Explaining Atomics in Rust

Understanding atomics and the memory ordering options when dealing with them can help us better understand multithreaded programming and why Rust helps us write safe and performant multithreaded code. (more…)

Read more »