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