Skip to content

Commit e113038

Browse files
authored
Rollup merge of #39191 - cesarb:book/trait-objects-vtable-size-and-align, r=steveklabnik
book: size and align in trait object vtables are used The book currently claims that the `size` and `align` fields in the trait object vtable are not used, but this is false. These two fields are used by the stable `mem::size_of_val` and `mem::align_of_val` functions. See the `ty::TyDynamic` case of the `glue::size_and_align_of_dst` function in librustc_trans, which is used to implement both intrinsics in the unsized case. r? @steveklabnik
2 parents 9df2daf + c7b092b commit e113038

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/doc/book/trait-objects.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -263,10 +263,7 @@ any resources of the vtable’s type: for `u8` it is trivial, but for `String` i
263263
will free the memory. This is necessary for owning trait objects like
264264
`Box<Foo>`, which need to clean-up both the `Box` allocation as well as the
265265
internal type when they go out of scope. The `size` and `align` fields store
266-
the size of the erased type, and its alignment requirements; these are
267-
essentially unused at the moment since the information is embedded in the
268-
destructor, but will be used in the future, as trait objects are progressively
269-
made more flexible.
266+
the size of the erased type, and its alignment requirements.
270267

271268
Suppose we’ve got some values that implement `Foo`. The explicit form of
272269
construction and use of `Foo` trait objects might look a bit like (ignoring the

0 commit comments

Comments
 (0)