File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 51
51
` Trait ` that matches the actual dynamic trait the pointer or reference points to.
52
52
* Slice metadata is invalid if the length is not a valid ` usize `
53
53
(i.e., it must not be read from uninitialized memory).
54
- * Non-UTF-8 byte sequences in a ` str ` .
55
54
* Invalid values for a type with a custom definition of invalid values.
56
55
In the standard library, this affects [ ` NonNull<T> ` ] and [ ` NonZero* ` ] .
57
56
@@ -63,8 +62,8 @@ points to are part of the same allocation (so in particular they all have to be
63
62
part of * some* allocation). The span of bytes it points to is determined by the
64
63
pointer value and the size of the pointee type (using ` size_of_val ` ). As a
65
64
consequence, if the span is empty, "dangling" is the same as "non-null". Note
66
- that slices point to their entire range, so it is important that the length
67
- metadata is never too large. In particular, allocations and therefore slices
65
+ that slices/string point to their entire range, so it is important that the length
66
+ metadata is never too large. In particular, allocations and therefore slices/strings
68
67
cannot be bigger than ` isize::MAX ` bytes.
69
68
70
69
> ** Note** : Undefined behavior affects the entire program. For example, calling
You can’t perform that action at this time.
0 commit comments