Rust
- 0 vote244 views1 answer
- 0 vote223 views1 answer
- 0 vote231 views2 answers
- 0 vote249 views1 answer
- 0 vote234 views1 answer
- 0 vote217 views1 answer
- 0 vote203 views1 answer
- 0 vote251 views1 answer
- 0 vote288 views1 answer
- 0 vote247 views1 answer
- 0 vote229 views1 answer
- 0 vote224 views1 answer
- 0 vote218 views1 answer
- 0 vote237 views1 answer
- 0 vote220 views1 answer
- 0 vote219 views1 answer
- 0 vote235 views1 answer
- 0 vote228 views1 answer
- 0 vote258 views1 answer
- 0 vote247 views1 answer
- 0 vote237 views1 answer
- 0 vote193 views1 answer
- 0 vote204 views1 answer
- 0 vote227 views1 answer
- 0 vote232 views1 answer
Rust is a systems programming language with three objectives: safety, speed, and concurrency. It achieves these goals without the use of a garbage collector, making it a valuable language for a variety of use cases that other languages aren't good at, including embedding in other languages, programs with specific space and time requirements, and writing low-level code, such as device drivers and operating systems.
It improves on existing languages in this field by incorporating a number of compile-time safety checks that create no runtime cost while removing all data races. Rust likewise strives towards 'zero-cost abstractions', even though some of these abstractions resemble high-level language. Even so, Rust provides exact control in the same way that a low-level language would.