Skip to content

Commit 525c661

Browse files
Rollup merge of #115522 - joshlf:patch-8, r=scottmcm
Clarify ManuallyDrop bit validity Clarify that `ManuallyDrop<T>` has the same bit validity as `T`.
2 parents 4e818f6 + a16622f commit 525c661

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

library/core/src/mem/manually_drop.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ use crate::ptr;
44
/// A wrapper to inhibit compiler from automatically calling `T`’s destructor.
55
/// This wrapper is 0-cost.
66
///
7-
/// `ManuallyDrop<T>` is guaranteed to have the same layout as `T`, and is subject
8-
/// to the same layout optimizations as `T`. As a consequence, it has *no effect*
9-
/// on the assumptions that the compiler makes about its contents. For example,
10-
/// initializing a `ManuallyDrop<&mut T>` with [`mem::zeroed`] is undefined
11-
/// behavior. If you need to handle uninitialized data, use [`MaybeUninit<T>`]
12-
/// instead.
7+
/// `ManuallyDrop<T>` is guaranteed to have the same layout and bit validity as
8+
/// `T`, and is subject to the same layout optimizations as `T`. As a consequence,
9+
/// it has *no effect* on the assumptions that the compiler makes about its
10+
/// contents. For example, initializing a `ManuallyDrop<&mut T>` with [`mem::zeroed`]
11+
/// is undefined behavior. If you need to handle uninitialized data, use
12+
/// [`MaybeUninit<T>`] instead.
1313
///
1414
/// Note that accessing the value inside a `ManuallyDrop<T>` is safe.
1515
/// This means that a `ManuallyDrop<T>` whose content has been dropped must not

0 commit comments

Comments
 (0)