We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b349d8 commit e9fce04Copy full SHA for e9fce04
src/smart-pointers/box.md
@@ -31,7 +31,8 @@ fn main() {
31
[call methods
32
from `T` directly on a `Box<T>`](https://doc.rust-lang.org/std/ops/trait.Deref.html#more-on-deref-coercion).
33
34
-Recursive data types or data types with dynamic sizes need to use a `Box`:
+Recursive data types or data types with dynamic sizes cannot be stored inline
35
+without a pointer indirection, which can be worked around using `Box`:
36
37
```rust,editable
38
#[derive(Debug)]
0 commit comments