Skip to content

Commit 80340f6

Browse files
authored
Docs: make Vec::from_raw_parts documentation less strict
This is my first PR; be gentle! In https://users.rust-lang.org/t/why-does-vec-from-raw-parts-require-same-size-and-not-same-size-capacity/73036/2?u=janpaul123 it was suggested to me that I should make a PR to make the documentation of `Vec::from_raw_parts` less strict, since we don't require `T` to have the same size, just `size_of::<T>() * capacity` to be the same, since that is what results in `Layout::size` being the same in `dealloc`, which is really what matters. Also in https://users.rust-lang.org/t/why-does-vec-from-raw-parts-require-same-size-and-not-same-size-capacity/73036/8?u=janpaul123 it was suggested that it's better to use `slice::from_raw_parts`, which I think is useful advise that could also be mentioned in the docs, so I added that too. Let me know what you think! :)
1 parent 461e807 commit 80340f6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

library/alloc/src/vec/mod.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -479,20 +479,24 @@ impl<T> Vec<T> {
479479
///
480480
/// * `ptr` needs to have been previously allocated via [`String`]/`Vec<T>`
481481
/// (at least, it's highly likely to be incorrect if it wasn't).
482-
/// * `T` needs to have the same size and alignment as what `ptr` was allocated with.
482+
/// * `T` needs to have the same alignment as what `ptr` was allocated with.
483483
/// (`T` having a less strict alignment is not sufficient, the alignment really
484484
/// needs to be equal to satisfy the [`dealloc`] requirement that memory must be
485485
/// allocated and deallocated with the same layout.)
486+
/// * The size of `T` times the `capacity` (ie. the allocated size in bytes) needs
487+
/// to be the same size as the pointer was allocated with. (Because similar to
488+
/// alignment, [`dealloc`] must be called with the same layout `size`.)
486489
/// * `length` needs to be less than or equal to `capacity`.
487-
/// * `capacity` needs to be the capacity that the pointer was allocated with.
488490
///
489491
/// Violating these may cause problems like corrupting the allocator's
490492
/// internal data structures. For example it is **not** safe
491493
/// to build a `Vec<u8>` from a pointer to a C `char` array with length `size_t`.
492494
/// It's also not safe to build one from a `Vec<u16>` and its length, because
493495
/// the allocator cares about the alignment, and these two types have different
494496
/// alignments. The buffer was allocated with alignment 2 (for `u16`), but after
495-
/// turning it into a `Vec<u8>` it'll be deallocated with alignment 1.
497+
/// turning it into a `Vec<u8>` it'll be deallocated with alignment 1. To avoid
498+
/// these issues, it is often preferable to do casting/transmuting using
499+
/// [`slice::from_raw_parts`] instead.
496500
///
497501
/// The ownership of `ptr` is effectively transferred to the
498502
/// `Vec<T>` which may then deallocate, reallocate or change the

0 commit comments

Comments
 (0)