├── .gitignore ├── LICENSE ├── QA ├── cn │ ├── expert-level │ │ ├── .keep │ │ ├── basic_types │ │ │ ├── anwser │ │ │ │ ├── coding.md │ │ │ │ └── options.md │ │ │ ├── coding.md │ │ │ └── options.md │ │ ├── lifetime │ │ │ ├── anwser │ │ │ │ ├── coding.md │ │ │ │ └── options.md │ │ │ ├── coding.md │ │ │ └── options.md │ │ └── ownership │ │ │ ├── anwser │ │ │ ├── coding.md │ │ │ └── options.md │ │ │ ├── coding.md │ │ │ └── options.md │ ├── quiz-level │ │ ├── .keep │ │ ├── lifetime │ │ │ ├── anwser │ │ │ │ ├── coding.md │ │ │ │ └── options.md │ │ │ ├── coding.md │ │ │ └── options.md │ │ └── ownership │ │ │ ├── anwser │ │ │ ├── coding.md │ │ │ └── options.md │ │ │ ├── coding.md │ │ │ └── options.md │ └── work-level │ │ ├── .keep │ │ ├── lifetime │ │ ├── anwser │ │ │ ├── coding.md │ │ │ └── options.md │ │ ├── coding.md │ │ └── options.md │ │ └── ownership │ │ ├── anwser │ │ ├── coding.md │ │ └── options.md │ │ ├── coding.md │ │ └── options.md └── en │ ├── expert-level │ └── .keep │ ├── quiz-level │ └── .keep │ └── work-level │ └── .keep ├── README.md ├── images ├── 1.png ├── 2.png ├── 3.png └── 4.png └── prompts ├── cn ├── rust-prompt.md └── summary-prompt.md └── en └── prompt.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/LICENSE -------------------------------------------------------------------------------- /QA/cn/expert-level/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/cn/expert-level/basic_types/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/basic_types/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/expert-level/basic_types/anwser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/basic_types/anwser/options.md -------------------------------------------------------------------------------- /QA/cn/expert-level/basic_types/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/basic_types/coding.md -------------------------------------------------------------------------------- /QA/cn/expert-level/basic_types/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/basic_types/options.md -------------------------------------------------------------------------------- /QA/cn/expert-level/lifetime/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/lifetime/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/expert-level/lifetime/anwser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/lifetime/anwser/options.md -------------------------------------------------------------------------------- /QA/cn/expert-level/lifetime/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/lifetime/coding.md -------------------------------------------------------------------------------- /QA/cn/expert-level/lifetime/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/lifetime/options.md -------------------------------------------------------------------------------- /QA/cn/expert-level/ownership/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/ownership/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/expert-level/ownership/anwser/options.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/cn/expert-level/ownership/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/ownership/coding.md -------------------------------------------------------------------------------- /QA/cn/expert-level/ownership/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/expert-level/ownership/options.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/cn/quiz-level/lifetime/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/lifetime/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/lifetime/anwser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/lifetime/anwser/options.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/lifetime/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/lifetime/coding.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/lifetime/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/lifetime/options.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/ownership/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/ownership/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/ownership/anwser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/ownership/anwser/options.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/ownership/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/ownership/coding.md -------------------------------------------------------------------------------- /QA/cn/quiz-level/ownership/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/quiz-level/ownership/options.md -------------------------------------------------------------------------------- /QA/cn/work-level/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/cn/work-level/lifetime/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/lifetime/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/work-level/lifetime/anwser/options.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/cn/work-level/lifetime/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/lifetime/coding.md -------------------------------------------------------------------------------- /QA/cn/work-level/lifetime/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/lifetime/options.md -------------------------------------------------------------------------------- /QA/cn/work-level/ownership/anwser/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/ownership/anwser/coding.md -------------------------------------------------------------------------------- /QA/cn/work-level/ownership/anwser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/ownership/anwser/options.md -------------------------------------------------------------------------------- /QA/cn/work-level/ownership/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/ownership/coding.md -------------------------------------------------------------------------------- /QA/cn/work-level/ownership/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/QA/cn/work-level/ownership/options.md -------------------------------------------------------------------------------- /QA/en/expert-level/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/en/quiz-level/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QA/en/work-level/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/README.md -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/images/4.png -------------------------------------------------------------------------------- /prompts/cn/rust-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/prompts/cn/rust-prompt.md -------------------------------------------------------------------------------- /prompts/cn/summary-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/prompts/cn/summary-prompt.md -------------------------------------------------------------------------------- /prompts/en/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/rustchat/HEAD/prompts/en/prompt.md --------------------------------------------------------------------------------