Skip to content

Commit d098993

Browse files
Rollup merge of rust-lang#130653 - RalfJung:result-abi-compat, r=traviscross
ABI compatibility: mention Result guarantee This has been already documented in https://doc.rust-lang.org/std/result/index.html#representation, but for `Option` we mirrored those docs in the "ABI compatibility" section, so let's do the same here. Cc ``@workingjubilee`` ``@rust-lang/lang``
2 parents 2953dee + db6427b commit d098993

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

core/src/primitive_docs.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1761,6 +1761,8 @@ mod prim_ref {}
17611761
/// - `i32` is ABI-compatible with `NonZero<i32>`, and similar for all other integer types.
17621762
/// - If `T` is guaranteed to be subject to the [null pointer
17631763
/// optimization](option/index.html#representation), then `T` and `Option<T>` are ABI-compatible.
1764+
/// Furthermore, if `U` satisfies the requirements [outlined here](result/index.html#representation),
1765+
/// then `T` and `Result<T, U>` and `Result<U, T>` are all ABI-compatible.
17641766
///
17651767
/// Furthermore, ABI compatibility satisfies the following general properties:
17661768
///

0 commit comments

Comments
 (0)