sui_rust/ch03/
mod.rs

1//! 第三章:Rust 异步编程概念
2//!
3//! 本章至下而上的方式来带领大家理解异步编程:
4//!
5//! 1. 异步 I/O 模型
6//! 2. 异步编程模型:
7//!     - 事件驱动模型
8//!     - Futures
9//!     - 生成器 与 Pin
10//!     - async/await
11//!     - 异步运行时介绍:async-std、tokio、bastion、smol
12//!
13
14// section 01
15pub mod s1_io_model;
16// section 02
17pub mod s2_async_await;
18// section 03
19pub mod s3_async_runtime;