-
Rust:A language for the Next 40 Years - Carol Nichols코딩Coding/★★Rust★★최신동향★및관련글 2020. 9. 13. 10:59728x90
Rust Safety
- Either one mutable reference OR many immutable reference.
- No null, only Option
- Out-of-bounds access = at runtime, program stops
- Ownership rules apply across mutiple threads.Unsafe code can ....
- Dereference a raw pointer
- Call an unsafe function
- Implement unsafe traits
- Mutate global variables
- Access fields of unionsFurther unsafe Info
- Buiding on an Unsafe Foundation- Jason Orendorff, RBR 2018
- The Rustonomicon반응형'코딩Coding > ★★Rust★★최신동향★및관련글' 카테고리의 다른 글
My Favorite Rust Function Signature-출처reddit (0) 2020.09.18 This Week in Rust 356 (0) 2020.09.17 Initial CAPI for hyper(Pull Request) (0) 2020.09.16 Porting PineTime Watch Face from C to Rust On RIOT with LVGL (0) 2020.09.13 RustConf2019-The Symbiotic Relationship of C++ and Rust by Isabella Muerte (0) 2020.09.13 Keywords- The Rust Reference (0) 2020.09.13 Rust, WebAssembly, and the future of Severless (0) 2020.09.13 RustConf 2019-From Electron, to WASM, to Rust(Aand Back to Electron) by Irina Sh (0) 2020.09.13