1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-17 06:37:34 +02:00

Move Trait Objects to the Smart Pointers segment (#1756)

Fixes #1516.
This commit is contained in:
Dustin J. Mitchell
2024-01-25 09:47:50 -05:00
committed by GitHub
parent 2313c0c3d0
commit 20f45521e5
3 changed files with 3 additions and 2 deletions

View File

@ -77,7 +77,6 @@
- [Methods](methods-and-traits/methods.md)
- [Traits](methods-and-traits/traits.md)
- [Deriving](methods-and-traits/deriving.md)
- [Trait Objects](methods-and-traits/trait-objects.md)
- [Exercise: Generic Logger](methods-and-traits/exercise.md)
- [Solution](methods-and-traits/solution.md)
- [Generics](generics.md)
@ -130,6 +129,7 @@
- [Smart Pointers](smart-pointers.md)
- [`Box<T>`](smart-pointers/box.md)
- [`Rc`](smart-pointers/rc.md)
- [Trait Objects](smart-pointers/trait-objects.md)
- [Exercise: Binary Tree](smart-pointers/exercise.md)
- [Solution](smart-pointers/solution.md)