pub type FixedNonZeroUsize = NonZeroU32;
Expand description
The native type that NonZeroUsize
is converted to for archiving.
This will be NonZeroU16
, NonZeroU32
, or NonZeroU64
when the
pointer_width_16
, pointer_width_32
, or pointer_width_64
features are
enabled, respectively. With no pointer width features enabled, it defaults
to NonZeroU32
.
Aliased Typeยง
struct FixedNonZeroUsize(/* private fields */);