rust_book

所属分类:Rust编程
开发工具:Rust
文件大小:0KB
下载次数:0
上传日期:2023-12-06 18:18:18
上 传 者sh-1993
说明:  本书旨在开始使用Rust编程语言。
(Book to get started with the Rust programming language.)

文件列表:
chapter_10_generics_traits_lifetimes/ (0, 2023-12-06)
chapter_10_generics_traits_lifetimes/Cargo.lock (180, 2023-12-06)
chapter_10_generics_traits_lifetimes/Cargo.toml (107, 2023-12-06)
chapter_10_generics_traits_lifetimes/src/ (0, 2023-12-06)
chapter_10_generics_traits_lifetimes/src/main.rs (8711, 2023-12-06)
chapter_11_testing/ (0, 2023-12-06)
chapter_11_testing/Cargo.lock (6532, 2023-12-06)
chapter_11_testing/Cargo.toml (152, 2023-12-06)
chapter_11_testing/src/ (0, 2023-12-06)
chapter_11_testing/src/lib.rs (2107, 2023-12-06)
chapter_11_testing/src/main.rs (1353, 2023-12-06)
chapter_11_testing/tests/ (0, 2023-12-06)
chapter_11_testing/tests/integration_tests.rs (933, 2023-12-06)
chapter_12_minigrep/ (0, 2023-12-06)
chapter_12_minigrep/Cargo.lock (8727, 2023-12-06)
chapter_12_minigrep/Cargo.toml (150, 2023-12-06)
chapter_12_minigrep/poem.txt (220, 2023-12-06)
chapter_12_minigrep/src/ (0, 2023-12-06)
chapter_12_minigrep/src/config.rs (862, 2023-12-06)
chapter_12_minigrep/src/error.rs (646, 2023-12-06)
chapter_12_minigrep/src/lib.rs (1731, 2023-12-06)
chapter_12_minigrep/src/main.rs (899, 2023-12-06)
chapter_12_minigrep/src/search.rs (3871, 2023-12-06)
chapter_12_minigrep/tests/ (0, 2023-12-06)
chapter_12_minigrep/tests/integration_tests.rs (1676, 2023-12-06)
chapter_13_iterators_and_closures/ (0, 2023-12-06)
chapter_13_iterators_and_closures/Cargo.lock (1998, 2023-12-06)
chapter_13_iterators_and_closures/Cargo.toml (156, 2023-12-06)
chapter_13_iterators_and_closures/src/ (0, 2023-12-06)
chapter_13_iterators_and_closures/src/main.rs (3337, 2023-12-06)
chapter_13_iterators_and_closures/src/shirts.rs (2058, 2023-12-06)
chapter_1_getting_started/ (0, 2023-12-06)
chapter_1_getting_started/Cargo.lock (169, 2023-12-06)
chapter_1_getting_started/Cargo.toml (96, 2023-12-06)
chapter_1_getting_started/src/ (0, 2023-12-06)
... ...

# The Rust Programming Language Book to get started with the Rust programming language. Available online: Available offline: `rustup docs --book` ## About Rust is a multi-paradigm, general-purpose programming language. Rust emphasizes performance, type safety, and concurrency. Rust enforces memory safety—that is, that all references point to valid memory—without requiring the use of a garbage collector or reference counting present in other memory-safe languages. Rust keeps track of who can read and write to memory. It knows when the program is using memory and immediately frees the memory once it is no longer needed. - [Website](https://www.rust-lang.org/) - Local Documentation: `rustup doc` - Rust version used: v1.74.0 (`rustc --version`) ## Summary 1. [Getting Started](./chapter_1_getting_started) 2. [Programming a Guessing Game](./chapter_2_guessing_game) 3. [Common Programming Concepts](./chapter_3_common_concepts) 4. [Understanding Ownership](./chapter_4_ownership) 5. [Using Structs to Structure Related Data](./chapter_5_structs) 6. [Enums and Pattern Matching](./chapter_6_enums) 7. [Managing Growing Projects with Packages, Crates, and Modules](./chapter_7_packages_crates_modules) 8. [Common Collections](./chapter_8_common_collections) 9. [Error Handling](./chapter_9_error_handling) 10. [Generic Types, Traits, and Lifetimes](./chapter_10_generics_traits_lifetimes) 11. [Testing](./chapter_11_testing) 12. [An I/O Project: Building a Command Line Program: `minigrep`](./chapter_12_minigrep) 13. [Functional Language Features: Iterators and Closures](./chapter_13_iterators_and_closures)

近期下载者

相关文件


收藏者