├── .gitignore ├── Projects ├── .keep └── README.md ├── Questions-and-Answers ├── .keep └── README.md ├── Questions ├── .keep ├── Advance │ ├── .keep │ └── README.md ├── Basic │ ├── .keep │ └── README.md └── Practice │ ├── .keep │ └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Projects/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Projects/.keep -------------------------------------------------------------------------------- /Projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Projects/README.md -------------------------------------------------------------------------------- /Questions-and-Answers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions-and-Answers/.keep -------------------------------------------------------------------------------- /Questions-and-Answers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions-and-Answers/README.md -------------------------------------------------------------------------------- /Questions/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/.keep -------------------------------------------------------------------------------- /Questions/Advance/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/Advance/.keep -------------------------------------------------------------------------------- /Questions/Advance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/Advance/README.md -------------------------------------------------------------------------------- /Questions/Basic/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/Basic/.keep -------------------------------------------------------------------------------- /Questions/Basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/Basic/README.md -------------------------------------------------------------------------------- /Questions/Practice/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/Practice/.keep -------------------------------------------------------------------------------- /Questions/Practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustStudy/rust_interview/e17591398a6a78ad5e1e476a4c6638fbf9f074a4/Questions/Practice/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rust面试题集锦 2 | 3 | 此项目的目的是建立一套社区公认的Rust参考面试题,由社区贡献而成。 4 | 5 | ## 项目结构说明 6 | 7 | - Projects. 用于记录可以面试考察实践能力的小项目。 8 | - Questions. 用于记录Rust编程知识相关的考察题目。 9 | - Basic. 基础的编程知识考察题目。 10 | - Advance. 高级考察题目。 11 | - Practice. 实践相关的问题。 12 | - Questions-and-Answers. 记录考察题目相关的答案。 13 | 14 | ## 贡献方法 15 | 16 | - 提交Issues。 提交各种修改意见。 17 | - 提交Pull Request。 提交面试题相关内容。 18 | 19 | ## 社区Q群 20 | 21 | - 303838735(千人大群) 22 | - 244351570(十人小群) --------------------------------------------------------------------------------