{"id":14991935,"url":"https://github.com/WTFAcademy/WTF-Rust","last_synced_at":"2025-09-25T14:30:34.067Z","repository":{"id":227680381,"uuid":"616415394","full_name":"WTFAcademy/WTF-Rust","owner":"WTFAcademy","description":"Rust学习资料汇总","archived":false,"fork":false,"pushed_at":"2024-07-20T02:50:12.000Z","size":183,"stargazers_count":122,"open_issues_count":2,"forks_count":30,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-12T15:06:34.312Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WTFAcademy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-20T10:50:25.000Z","updated_at":"2024-12-27T10:45:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"9426baa9-6ec7-437a-bc06-967f6adfe6d3","html_url":"https://github.com/WTFAcademy/WTF-Rust","commit_stats":null,"previous_names":["wtfacademy/wtf-rust"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WTFAcademy%2FWTF-Rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WTFAcademy%2FWTF-Rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WTFAcademy%2FWTF-Rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WTFAcademy%2FWTF-Rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WTFAcademy","download_url":"https://codeload.github.com/WTFAcademy/WTF-Rust/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234200156,"owners_count":18795139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T15:00:36.507Z","updated_at":"2025-09-25T14:30:33.638Z","avatar_url":"https://github.com/WTFAcademy.png","language":"Rust","funding_links":[],"categories":["Summary"],"sub_categories":[],"readme":"# WTF Rust 教程\n\n本教程是由 WTF Academy 贡献者们精心打造的 Rust 入门教程。\n\n\u003e 我们最近在学习 Rust，巩固一下细节，也写一个“WTF Rust 极简入门”，供小白们使用（编程大佬可以另找教程）。\n\n**第 1 讲 Hello Rust**：[Code](01_HelloRust/hello_cargo/src/main.rs) | [教程](01_HelloRust/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 2 讲 基本类型**：[Code](02_BaseType/src/main.rs) | [教程](02_BaseType/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 3 讲 复合类型**：[Code](03_CompoundType/src/main.rs) | [教程](03_CompoundType/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 4 讲 结构体，枚举**：[Code](04_Struct_Enum/src/main.rs) | [教程](04_Struct_Enum/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 5 讲 所有权、借用、引用**：[Code](05_Ownership/src/main.rs) | [教程](05_Ownership/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 6 讲 函数**：[Code](06_Function/src/main.rs) | [教程](06_Function/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 7 讲 Rust 测试**：[Code](07_Rust_Tests/adder/src/lib.rs) | [教程](07_Rust_Tests/rust_tests.md) | 本文作者: [Eta](https://twitter.com/pwhattie)\n\n**第 8 讲 集合类型**：[Code](08_Collections/src/main.rs) | [教程](08_Collections/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 9 讲 错误处理**：[Code](09_Errors/src/main.rs) | [教程](09_Errors/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 10 讲 Trait**：[Code](10_Trait/src/main.rs) | [教程](10_Trait/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 11 讲 泛型**：[Code](11_Generics/src/main.rs) | [教程](11_Generics/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 12 讲 生命周期**：[Code](12_Lifetime/src/main.rs) | [教程](12_Lifetime/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 13 讲 Cargo**：[Code](13_Cargo/src/main.rs) | [教程](13_Cargo/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 14 讲 Rust 常用库**：[Code](14_Rust_Lib/src/lib.rs) | [教程](14_Rust_Lib/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 15 讲 线程**：[Code](15_Thread/src/main.rs) | [教程](15_Thread/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 16 讲 通道**：[Code](16_Channel/src/main.rs) | [教程](16_Channel/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 17 讲 锁**：[Code](17_Lock/src/main.rs) | [教程](17_Lock/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 18 讲 异步编程**：[Code](18_Async/src/main.rs) | [教程](18_Async/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n**第 19 讲 IO**：[Code](19_IO/src/main.rs) | [教程](19_IO/README.md) | 本文作者: [Carp](https://github.com/carpcai)\n\n\n\n## Reference\n\n- [Rust Book](https://doc.rust-lang.org/book)\n- [Rust-Lang](https://www.rust-lang.org/learn)\n- [Rust-By-Example](https://doc.rust-lang.org/stable/rust-by-example/)\n- [Programiz Rust Tutorials](https://www.programiz.com/rust/getting-started)\n- [Comprehensive Rust by Google](https://google.github.io/comprehensive-rust/)\n- [freeCodeCamp.org](https://www.youtube.com/watch?v=BpPEoZW5IiY)\n- [Rust 101 Crash Course: Learn Rust (6 HOURS!) + 19 Practice](https://www.youtube.com/watch?v=lzKeecy4OmQ)\n- [Rust Tutorial](https://www.youtube.com/watch?v=fPk-fyP9MFM)\n- [rust Primer](https://rustcc.gitbooks.io/rustprimer/content/)\n- [Rust 语言圣经](https://course.rs/into-rust.html)\n- [rustlings](https://github.com/rust-lang-cn/rustlings-cn)\n- [rust 在线编译器](https://play.rust-lang.org/?version=stable\u0026mode=debug\u0026edition=2021)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FWTFAcademy%2FWTF-Rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FWTFAcademy%2FWTF-Rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FWTFAcademy%2FWTF-Rust/lists"}