File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1397,6 +1397,8 @@ impl<T: ?Sized> Arc<T> {
1397
1397
/// different types. See [`mem::transmute`][transmute] for more information
1398
1398
/// on what restrictions apply in this case.
1399
1399
///
1400
+ /// The raw pointer must point to a block of memory allocated by the global allocator
1401
+ ///
1400
1402
/// The user of `from_raw` has to make sure a specific value of `T` is only
1401
1403
/// dropped once.
1402
1404
///
@@ -1452,7 +1454,8 @@ impl<T: ?Sized> Arc<T> {
1452
1454
///
1453
1455
/// The pointer must have been obtained through `Arc::into_raw`, and the
1454
1456
/// associated `Arc` instance must be valid (i.e. the strong count must be at
1455
- /// least 1) for the duration of this method.
1457
+ /// least 1) for the duration of this method, and `ptr` must point to a block of memory
1458
+ /// allocated by the global allocator.
1456
1459
///
1457
1460
/// # Examples
1458
1461
///
@@ -1486,7 +1489,8 @@ impl<T: ?Sized> Arc<T> {
1486
1489
///
1487
1490
/// The pointer must have been obtained through `Arc::into_raw`, and the
1488
1491
/// associated `Arc` instance must be valid (i.e. the strong count must be at
1489
- /// least 1) when invoking this method. This method can be used to release the final
1492
+ /// least 1) when invoking this method, and `ptr` must point to a block of memory
1493
+ /// allocated by the global allocator. This method can be used to release the final
1490
1494
/// `Arc` and backing storage, but **should not** be called after the final `Arc` has been
1491
1495
/// released.
1492
1496
///
You can’t perform that action at this time.
0 commit comments