1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-25 01:16:12 +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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -160,7 +160,8 @@ use-boolean-and = true
'methods/example.html' = '../methods-and-traits/methods.html'
'traits.html' = 'methods-and-traits/traits.html'
'traits/default-methods.html' = '../methods-and-traits/traits.html'
'traits/trait-objects.html' = '../methods-and-traits/trait-objects.html'
'methods-and-traits/trait-objects.html' = '../smart-pointers/trait-objects.html'
'traits/trait-objects.html' = '../smart-pointers/trait-objects.html'
'exercises/day-3/simple-gui.html' = '../../methods-and-traits/exercise.html'
'generics/monomorphization.html' = '../generics/generic-functions.html'
'generics/data-types.html' = '../generics/generic-data.html'

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)