@@ -479,20 +479,24 @@ impl<T> Vec<T> {
479
479
///
480
480
/// * `ptr` needs to have been previously allocated via [`String`]/`Vec<T>`
481
481
/// (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.
483
483
/// (`T` having a less strict alignment is not sufficient, the alignment really
484
484
/// needs to be equal to satisfy the [`dealloc`] requirement that memory must be
485
485
/// 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`.)
486
489
/// * `length` needs to be less than or equal to `capacity`.
487
- /// * `capacity` needs to be the capacity that the pointer was allocated with.
488
490
///
489
491
/// Violating these may cause problems like corrupting the allocator's
490
492
/// internal data structures. For example it is **not** safe
491
493
/// to build a `Vec<u8>` from a pointer to a C `char` array with length `size_t`.
492
494
/// It's also not safe to build one from a `Vec<u16>` and its length, because
493
495
/// the allocator cares about the alignment, and these two types have different
494
496
/// 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.
496
500
///
497
501
/// The ownership of `ptr` is effectively transferred to the
498
502
/// `Vec<T>` which may then deallocate, reallocate or change the
0 commit comments