Rust
- 0 vote250 views1 answer
- 0 vote283 views1 answer
- 0 vote309 views1 answer
- 0 vote320 views1 answer
- 0 vote313 views1 answer
- 0 vote317 views1 answer
- 0 vote338 views1 answer
- 0 vote297 views1 answer
- 0 vote294 views1 answer
- 0 vote283 views1 answer
- 0 vote304 views2 answers
- 0 vote323 views1 answer
- 0 vote281 views1 answer
- 0 vote310 views1 answer
- 0 vote318 views1 answer
- 0 vote287 views1 answer
- 0 vote318 views1 answer
- 0 vote363 views1 answer
- 0 vote308 views1 answer
- 0 vote299 views1 answer
- 0 vote316 views1 answer
- 0 vote311 views1 answer
- 0 vote312 views1 answer
- 0 vote315 views1 answer
- 0 vote288 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.