rustlings/exercises/24_new_features
Shenwenkun 9db703b468 git commit -m "feat: Add exercises for new Rust features
Add exercises for:
- const generics
- let-else statements
- generic associated types (GAT)
- async traits

These exercises help learners understand and practice new Rust features
introduced in recent versions."
2025-05-20 10:36:36 +08:00
..

Rust 新特性练习

这个章节包含了一些 Rust 最新特性的练习。通过这些练习,你将学习到:

  1. const 泛型Rust 1.51+
  2. GAT (Generic Associated Types) (Rust 1.65+)
  3. let-else 语句Rust 1.65+
  4. 异步特征Rust 1.75+

推荐阅读