You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/glossary.md
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -62,10 +62,7 @@ root, including through [paths] of public modules.
62
62
63
63
### Dispatch
64
64
65
-
Dispatch is the mechanism to determine which specific version of code is actually
66
-
run when it involves polymorphism. Two major forms of dispatch are static dispatch and
67
-
dynamic dispatch. While Rust favors static dispatch, it also supports dynamic dispatch
68
-
through a mechanism called ‘trait objects’.
65
+
Dispatch is the mechanism to determine which specific version of code is actually run when it involves polymorphism. Two major forms of dispatch are static dispatch and dynamic dispatch. Rust supports dynamic dispatch through the use of [trait objects][type.trait-object].
0 commit comments