Rollup merge of #88915 - joshlf:patch-4, r=kennytm

`Wrapping<T>` has the same layout and ABI as `T`
This commit is contained in:
Manish Goregaokar 2021-09-15 14:57:02 -07:00 committed by GitHub
commit cad1efae57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,10 @@ use crate::ops::{Shl, ShlAssign, Shr, ShrAssign, Sub, SubAssign};
///
/// assert_eq!(u32::MAX, (zero - one).0);
/// ```
///
/// # Layout
///
/// `Wrapping<T>` is guaranteed to have the same layout and ABI as `T`.
#[stable(feature = "rust1", since = "1.0.0")]
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)]
#[repr(transparent)]