@@ -478,48 +478,17 @@ unsafe {
478
478
assert_eq! (values [1 ], 3 );
479
479
```
480
480
481
- #### Sized to sized pointer casts
481
+ #### Pointer-to- pointer cast
482
482
483
- A sized pointer to pointer cast ` *const T as *const U ` or ` *mut T as *mut U `
484
- where ` T: Sized ` and ` U: Sized ` produces a value identical to the original
485
- pointer.
483
+ ` *const T ` / ` *mut T ` can be cast to ` *const U ` / ` *mut U ` under the following
484
+ conditions:
486
485
487
- #### Unsized to unsized pointer casts
488
-
489
- Any unsized to unsized pointer cast ` *const T as *const U ` or ` *mut T as *mut U `
490
- produces a value identical to the original pointer if ` T ` and ` U ` are compatible
491
- unsized types.
492
-
493
- For slice types like ` [T] ` and ` [U] ` , the raw pointer types ` *const [T] ` , `* mut
494
- [ T] ` , ` * const [ U] ` , and ` * mut [ U] ` encode the number of elements in this slice.
495
- Casts between these raw pointer types preserve the number of elements. Note
496
- that, as a consequence, such casts do * not* necessarily preserve the size of the
497
- pointer's referent (e.g., casting ` *const [u16] ` to ` *const [u8] ` will result in
498
- a raw pointer which refers to an object of half the size of the original). The
499
- same holds for ` str ` and any compound type whose unsized tail is a slice type,
500
- such as struct ` Foo(i32, [u8]) ` or ` (u64, Foo) ` .
501
-
502
- #### Unsized to sized pointer casts
503
-
504
- Any wide to narrow pointer cast discards all metadata that completes the wide
505
- pointer and produces a thin base pointer.
506
-
507
- The following casts are well-defined:
508
-
509
- * ` *const [T] to *const U ` or ` *mut [T] to *mut U ` discards the length of the
510
- slice and produces a pointer to the first element. The produced pointer is
511
- casted to ` U ` in the same manner as a sized pointer to pointer cast.
512
- * ` *const dyn T to *const U ` or ` *mut dyn T to *mut U ` discards all metadata
513
- associated with the [ trait object] and produces a pointer to the instance from
514
- which the trait object was constructed. The produced pointer is casted to ` U `
515
- in the same manner as a sized pointer to pointer cast.
516
-
517
- For example:
518
-
519
- * ` *const [u32] as *const u8 ` would produce a pointer to the first element
520
- constituting the slice, casted to a ` *const u8 ` pointer.
521
- * ` *const str ` and ` *mut str ` have the same semantics as ` *const [u8] ` and `* mut
522
- [ u8] ` since they have [ identical layouts] [ _str_layout_ ] .
486
+ - If both ` T ` and ` U ` are sized, the cast produces a value identical to the
487
+ original pointer.
488
+ - If both ` T ` and ` U ` are unsized, the cast produces a value identical to the
489
+ original pointer if ` T ` and ` U ` are compatible unsized types.
490
+ - If ` T ` is unsized and ` U ` is sized, the cast discards all metadata that
491
+ completes the wide pointer ` T ` and produces a thin base pointer ` U ` .
523
492
524
493
## Assignment expressions
525
494
@@ -704,8 +673,6 @@ See [this test] for an example of using this dependency.
704
673
[ undefined behavior ] : ../behavior-considered-undefined.md
705
674
[ addr_of ] : ../../std/ptr/macro.addr_of.html
706
675
[ addr_of_mut ] : ../../std/ptr/macro.addr_of_mut.html
707
- [ slice ] : ../types/slice.md
708
- [ trait object ] : ../types/trait-object.md
709
676
710
677
[ _BorrowExpression_ ] : #borrow-operators
711
678
[ _DereferenceExpression_ ] : #the-dereference-operator
@@ -722,4 +689,3 @@ See [this test] for an example of using this dependency.
722
689
[ _TypeNoBounds_ ] : ../types.md#type-expressions
723
690
[ _RangeExpression_ ] : ./range-expr.md
724
691
[ _UnderscoreExpression_ ] : ./underscore-expr.md
725
- [ _str_layout_ ] : ../type-layout.md#str-layout
0 commit comments