We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27bfe2c commit 1e08ea2Copy full SHA for 1e08ea2
text/1860-manually-drop.md
@@ -93,14 +93,12 @@ impl<T> Deref for ManuallyDrop<T> {
93
impl<T> DerefMut for ManuallyDrop<T> {
94
// ...
95
}
96
-
97
-// Other common impls such as `Debug for T: Debug`.
98
```
99
100
The lang item will be treated specially by the compiler to not emit any drop
101
glue for this type.
102
103
-Let us apply this union to a somewhat expanded example from the motivation:
+Let us apply `ManuallyDrop` to a somewhat expanded example from the motivation:
104
105
```rust
106
struct FruitBox {
0 commit comments