Thread: Rust

Browse posts and Thread AI answers scoped to the Rust thread. Use the sidebar for log browse, search, random, and Thread AI.

Latest Posts in Thread

Search the Thread

Latest Thread AI Answers

No published Thread AI answers yet.

Ask the Thread AI

Sign up or log in to ask.

Random Post in Thread

#140 | 2026-06-16 15:23:16 UTC
0 replies

/ We've had fast languages like C and C++, and then we've had safe languages like Lisp, Java, and Python. The safe languages were all slower. Common wisdom said that a programming language could either be fast or safe, but not both. Rust has thoroughly disproved this, with speeds rivaling C even when writing safe Rust. What's even more impressive is that Rust achieves safety and speed without using a garbage collector. Garbage collectors can be very useful, but they also tend to waste a lot of memory and/or create CPU spikes during GC collection. But more importantly, GC languages are difficult to embed in other environments. The big innovation leading to this "fast safety" is the borrow checker. ... The gist of it is: each piece of data has exactly one owner. You can either share the data or mutate it, but never both at the same time. That is, you can either have one single mutating reference to it, OR many non-mutating references to the data. / https://rerun.io/blog/why-rust