feature ¶
- zero-cost abstractions
- move semantics
- guaranteed memory safety
- threads without data races
- trait-based generics
- pattern matching
Fast ¶
- LLVM
- Compile to binary
- no GC
- minimal runtime
Prevent segfaults ¶
- No dangling pointer
- No null pointer
- No segfault
thread safety ¶
- No data race
- hard to compile