# Rust语言圣经 [进入Rust编程世界](into-rust.md) [关于本书](about-book.md) ## Getting started - [寻找牛刀,以便小试](first-try/intro.md) - [安装Rust环境](first-try/installation.md) - [墙推VSCode!](first-try/editor.md) - [认识Cargo](first-try/cargo.md) - [不仅仅是Hello world](first-try/hello-world.md) ## Rust学习三部曲 - [Rust基础入门](basic/intro.md) - [变量绑定与解构](basic/variable.md) - [基本类型](basic/base-type/index.md) - [数值类型](basic/base-type/numbers.md) - [字符、布尔、元类型](basic/base-type/char-bool.md) - [语句与表达式](basic/base-type/statement-expression.md) - [函数](basic/base-type/function.md) - [所有权和借用](basic/ownership/index.md) - [所有权](basic/ownership/ownership.md) - [引用与借用](basic/ownership/borrowing.md) - [复合类型](basic/compound-type/intro.md) - [字符串与切片](basic/compound-type/string-slice.md) - [元组](basic/compound-type/tuple.md) - [结构体](basic/compound-type/struct.md) - [枚举](basic/compound-type/enum.md) - [数组](basic/compound-type/array.md) - [流程控制](basic/flow-control.md) - [模式匹配](basic/match-pattern/intro.md) - [match和if let](basic/match-pattern/match-if-let.md) - [解构Option](basic/match-pattern/option.md) - [模式适用场景](basic/match-pattern/pattern-match.md) - [全模式列表](basic/match-pattern/all-patterns.md) - [方法Method](basic/method.md) - [泛型和特征](basic/trait/intro.md) - [泛型Generics](basic/trait/generic.md) - [特征Trait](basic/trait/trait.md) - [特征对象](basic/trait/trait-object.md) - [进一步深入特征](basic/trait/advance-trait.md) - [集合类型](basic/collections/intro.md) - [动态数组Vector](basic/collections/vector.md) - [KV存储HashMap](basic/collections/hashmap.md) - [类型转换](basic/converse.md) - [返回和错误处理](basic/result-error/intro.md) - [panic深入剖析!](basic/result-error/panic.md) - [返回值Result和?](basic/result-error/result.md) - [Rust高级进阶 doing](advance/intro.md) - [生命周期](advance/lifetime/intro.md) - [认识生命周期](advance/lifetime/basic.md) - [深入生命周期](advance/lifetime/advance.md) - [高阶特征约束(HRTB) todo](advance/hrtb.md) - [函数式编程](advance/functional-programing/intro.md) - [闭包closure](advance/functional-programing/closure.md) - [迭代器iterator](advance/functional-programing/iterator.md) - [包和模块](advance/crate-module/intro.md) - [包crate](advance/crate-module/crate.md) - [模块Module](advance/crate-module/module.md) - [使用use引入模块及受限可见性](advance/crate-module/use.md) - [注释和文档](advance/comment.md) - [深入类型之newtype和Sized](advance/custom-type.md) - [格式化输出](advance/formatted-output.md) - [智能指针](advance/smart-pointer/intro.md) - [Box堆对象分配](advance/smart-pointer/box.md) - [Deref解引用](advance/smart-pointer/deref.md) - [Drop释放资源](advance/smart-pointer/drop.md) - [Rc与Arc实现1vN所有权机制](advance/smart-pointer/rc-arc.md) - [Cell与RefCell内部可变性](advance/smart-pointer/cell-refcell.md) - [循环引用与自引用](advance/circle-self-ref/intro.md) - [Weak与循环引用](advance/circle-self-ref/circle-reference.md) - [结构体中的自引用](advance/circle-self-ref/self-referential.md)) - [多线程 todo](advance/multi-threads/intro.md) - [线程管理 todo](advance/multi-threads/thread.md) - [消息传递 todo](advance/multi-threads/message-passing.md) - [数据共享Mutex、Rwlock todo](advance/multi-threads/ref-counter-lock.md) - [数据竞争 todo](advance/multi-threads/races.md) - [Send、Sync todo](advance/multi-threads/send-sync.md) - [异步编程async/await todo](advance/async/intro.md) - [async/await语法 todo](advance/async/async-await.md) - [future详解 todo](advance/async/future/into.md) - [何为Future](advance/async/future/future.md) - [任务调度](advance/async/future/task-schedule.md) - [任务执行器](advance/async/future/task-excutor.md) - [系统IO](advance/async/future/system-io.md) - [执行多个Future](advance/async/future/multi-futures.md) - [Pin、Unpin todo](advance/async/pin-unpin.md) - [遇到不支持的异步特性? todo](advance/async/future/workarounds.md) - [HTTP Client/Server todo](advance/async/http.md) - [定海神针-tokio包 todo](advance/async/tokio/intro.md) - [基本用法](advance/async/tokio/basic.md) - [异步消息流](advance/async/tokio/stream.md)) - [全局变量 todo](advance/global-variable.md) ## 专题内容,每个专题都配套一个小型项目进行实践 - [Rust最佳实践 doing](practice/intro.md) - [日常开发三方库精选](practice/third-party-libs.md) - [一些写代码的技巧 todo](practice/coding-tips.md) - [最佳实践 todo](practice/best-pratice.md) - [值得学习的源代码 todo](practice/good-sourcecode.md) - [代码规范 doing](practice/style-guide/intro.md) - [命名规范](practice/style-guide/naming.md) - [代码风格(todo)](practice/style-guide/code.md) - [代码标记](practice/style-guide/mark.md) - [Clippy](practice/style-guide/clippy.md) - [对抗编译检查(持续更新)](fight-with-compiler/intro.md) - [幽灵数据(todo)](fight-with-compiler/phantom-data.md) - [生命周期](fight-with-compiler/lifetime/intro.md) - [生命周期过大-01](fight-with-compiler/lifetime/too-long1.md) - [生命周期过大-02](fight-with-compiler/lifetime/too-long2.md) - [循环中的生命周期](fight-with-compiler/lifetime/loop.md) - [闭包碰到特征对象-01](fight-with-compiler/lifetime/closure-with-static.md) - [重复借用](fight-with-compiler/borrowing/intro.md) - [同时在函数内外使用引用](fight-with-compiler/borrowing/ref-exist-in-out-fn.md) - [智能指针引起的重复借用错误](fight-with-compiler/borrowing/borrow-distinct-fields-of-struct.md) - [类型未限制(todo)](fight-with-compiler/unconstrained.md) - [Rust陷阱系列(持续更新)](pitfalls/index.md) - [for循环中使用外部数组](pitfalls/use-vec-in-for.md) - [线程类型导致的栈溢出](pitfalls/stack-overflow.md) - [算术溢出导致的panic](pitfalls/arithmetic-overflow.md) - [闭包中奇怪的生命周期](pitfalls/closure-with-lifetime.md) - [可变变量不可变?](pitfalls/the-disabled-mutability.md) - [可变借用失败引发的深入思考](pitfalls/multiple-mutable-references.md) - [不太勤快的迭代器](pitfalls/lazy-iterators.md) - [奇怪的序列x..y](pitfalls/weird-ranges.md) - [无处不在的迭代器](pitfalls/iterator-everywhere.md) - [进阶类型转换](converse/intro.md) - [枚举和整数](converse/enum-int.md) - [用Rust增强Javascript todo](rustjs/intro.md) - [deno todo](rustjs/deno.md) - [复杂错误索引 todo](errorindex/intro.md) - [所有权和借用 todo](errorindex/borrowing/intro.md) - [生命周期 todo](errorindex/lifetime/intro.md) - [错误处理 todo](errors/intro.md) - [简化错误处理 todo](errors/simplify.md) - [自定义错误 todo](errors/user-define.md) - [让错误输出更优雅 todo](errors/pretty-format.md) - [会导致panic的代码](errors/panic-codes.md) - [Cargo详解 todo](cargo/intro.md) - [常用命令 todo](cargo/commands.md) - [项目结构 todo](cargo/layout.md) - [Cargo.toml和Cargo.lock todo](cargo/cargo-toml-lock.md) - [依赖管理 todo](cargo/dependency.md) - [构建缓存 todo](cargo/cache.md) - [版本管理 todo](cargo/version.md) - [工作空间 todo](cargo/workspace.md) - [条件编译、条件依赖 todo](cargo/feature.md) - [配置参数 todo](cargo/manifest.md) - [自定义构建脚本 todo](cargo/build-js.md) - [Cargo profile todo](cargo/profile.md) - [测试 todo](test/intro.md) - [单元测试 todo](test/unit.md) - [集成测试 todo](test/intergration.md) - [性能测试 todo](test/benchmark.md) - [持续集成 todo](test/ci.md) - [常见特征解析 todo](traits/intro.md) - [类型转换From/Into](traits/from-into.md) - [AsRef, AsMut](traits/as-ref-as-mut.md) - [Borrow, BorrowMut, ToOwned](traits/borrow-family.md) - [Deref和引用隐式转换](traits/deref.md) - [写时拷贝Cow](traits/cow.md) - [Eq](traits/eq.md) - [深入内存 todo](memory/intro.md) - [指针和引用(todo)](memory/pointer-ref.md) - [未初始化内存(todo)](memory/uninit.md) - [内存分配(todo)](memory/allocation.md) - [内存布局(todo)](memory/layout.md) - [虚拟内存(todo)](memory/virtual.md) - [Web应用开发 todo](web/intro.md) - [编解码与序列化 todo](web/serialization.md) - [面向对象 todo](object-oriented/intro.md) - [为何OO(todo)](object-oriented/characteristics.md) - [特征对象](object-oriented/trait-object.md) - [设计模式](object-oriented/design-pattern.md) - [不安全Rust todo](unsafe/intro.md) - [原生指针(todo)](unsafe/raw-pointer.md) - [修改全局变量](unsafe/modify-global-var.md) - [FFI外部语言用](unsafe/ffi.md) - [那些会导致UB的代码](unsafe/ub.md) - [宏编程 todo](macro/intro.md) - [过程宏(todo)](macro/procedure-macro.md) - [性能调优 todo](performance/intro.md) - [深入理解move](performance/deep-into-move.md) - [糟糕的提前优化](performance/early-optimise.md) - [Clone和Copy](performance/clone-copy.md) - [Benchmark性能测试(todo)](performance/benchmark.md) - [减少Runtime check(todo)](performance/runtime-check.md) - [CPU缓存性能优化](performance/cpu-cache.md) - [计算性能优化](performance/calculate.md) - [堆和栈](performance/heap-stack.md) - [常用性能测试工具](performance/tools.md) - [编译器 todo](compiler/intro.md) - [常见属性标记](compiler/attributes.md) - [优化编译速度](compiler/speed-up.md) - [日志和监控 todo](monitor/intro.md) - [日志](monitor/log.md) - [可观测性](monitor/observability.md) - [监控(APM)](monitor/apm.md) - [标准库解析 todo](std/intro.md) - [如何寻找你想要的内容](std/search.md) - [Vector常用方法](std/vector.md) - [HashMap](std/hashmap.md) - [Iterator常用方法](std/iterator.md) - [常用三方库 todo](libraries/intro.md) - [JSON](libraries/json/intro.md) - [serde(todo)](libraries/json/serde.md) - [HTTP](libraries/http/intro.md) - [reqwest(todo)](libraries/http/reqwest.md) - [命令行解析](libraries/command/intro.md) - [structopt(todo)](libraries/command/structopt.md) ## 附录 - [附录](appendix/intro.md) - [A-关键字](appendix/keywords.md) - [B-运算符与符号](appendix/operators.md) - [C-表达式](appendix/expressions.md) - [D-派生特征derive](appendix/derive.md) - [E-prelude模块 todo](appendix/prelude.md) - [F-难点索引](appendix/difficulties.md) - [G-Rust版本发布](appendix/rust-version.md)