Type Alias NonZeroU128
type NonZeroU128 = NonZero<u128>
A u128 that is known not to equal zero.
This enables some memory layout optimization.
For example, Option<NonZeroU128> is the same size as u128:
assert_eq!;
Layout
NonZeroU128 is guaranteed to have the same layout and bit validity as u128
with the exception that 0 is not a valid instance.
Option<NonZeroU128> is guaranteed to be compatible with u128,
including in FFI.
Thanks to the null pointer optimization,
NonZeroU128 and Option<NonZeroU128>
are guaranteed to have the same size and alignment:
use NonZeroU128;
assert_eq!;
assert_eq!;
Compile-time creation
Since both [Option::unwrap()] and [Option::expect()] are const, it is possible to
define a new
NonZeroU128
at compile time via:
use NonZeroU128;
const TEN: NonZeroU128 = new.expect;