We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Pod
1 parent 36990df commit 8657017Copy full SHA for 8657017
doc/rust.md
@@ -3329,6 +3329,12 @@ The kinds are:
3329
This kind includes scalars, owning pointers, owned closures, and
3330
structural types containing only other owned types.
3331
All `Send` types are `'static`.
3332
+`Pod`
3333
+ : Types of this kind consist of "Plain Old Data"
3334
+ which can be copied by simply moving bits.
3335
+ All values of this kind can be implicitly copied.
3336
+ This kind includes scalars and immutable references,
3337
+ as well as structural types containing other `Pod` types.
3338
`'static`
3339
: Types of this kind do not contain any borrowed pointers;
3340
this can be a useful guarantee for code
0 commit comments