rust-book
rust-book copied to clipboard
[Meta] 已翻譯清單 & 章節認領區
請開啟新的 issue,標題為想翻譯的章節,然後 reference 到這個 issue。 可參考這兩個例子:https://github.com/askeing/rust-book/issues/11 和 https://github.com/askeing/rust-book/issues/13
以下為尚未完成清單:
- [x] * 簡介
- [x] * 準備
- [x] * 教學: 猜數字遊戲
- [x] * 語法及語意
- [x] * 變數綁定
- [x] * 函式
- [x] * 基本型別
- [x] * 註解
- [x] * if
- [x] * 迴圈
- [x] * 所有權
- [x] * 參照與借用
- [x] * 生命週期
- [x] * 可變性
- [x] * 結構體
- [x] * 枚舉
- [x] * Match
- [x] * 模式
- [x] * Method Syntax
- [x] * 向量
- [x] * 字串
- [x] * 泛型
- [x] * Traits
- [ ] * Drop
- [x] * if let
- [ ] * Trait Objects
- [ ] * Closures
- [ ] * Universal Function Call Syntax
- [ ] * Crates and Modules
- [ ] *
constandstatic - [ ] * Attributes
- [ ] *
typealiases - [ ] * Casting between types
- [ ] * Associated Types
- [ ] * Unsized Types
- [ ] * Operators and Overloading
- [ ] * Deref coercions
- [ ] * Macros
- [ ] * Raw Pointers
- [ ] *
unsafe - [ ] * Effective Rust
- [ ] * The Stack and the Heap
- [ ] * Testing
- [ ] * Conditional Compilation
- [ ] * Documentation
- [ ] * Iterators
- [ ] * Concurrency
- [ ] * Error Handling
- [ ] * Choosing your Guarantees
- [ ] * FFI
- [ ] * Borrow and AsRef
- [ ] * Release Channels
- [ ] * Using Rust without the standard library
- [ ] * Nightly Rust
- [ ] * Compiler Plugins
- [ ] * Inline Assembly
- [ ] * No stdlib
- [ ] * Intrinsics
- [ ] * Lang items
- [ ] * Advanced linking
- [ ] * Benchmark Tests
- [ ] * Box Syntax and Patterns
- [ ] * Slice Patterns
- [ ] * Associated Constants
- [ ] * Custom Allocators
- [x] * 詞彙表
- [ ] * 語法索引
- [x] * 參考文獻
認領 const and static
認領Drop