#[repr(transparent)]pub struct OptionRangedU16<const MIN: u16, const MAX: u16>(pub(crate) u16);
Expand description
An optional RangedU16
; similar to Option<RangedU16>
with better optimization.
If MIN
is u16::MIN
and MAX
is u16::MAX
then compilation will fail. This is because there is no way to represent the niche value.
This type is useful when you need to store an optional ranged value in a struct, but
do not want the overhead of an Option
type. This reduces the size of the struct
overall, and is particularly useful when you have a large number of optional fields.
Note that most operations must still be performed on the Option
type, which is
obtained with OptionRangedU16::get
.
Tuple Fields§
§0: u16
Implementations§
Source§impl<const MIN: u16, const MAX: u16> OptionRangedU16<MIN, MAX>
impl<const MIN: u16, const MAX: u16> OptionRangedU16<MIN, MAX>
Sourcepub const fn Some(value: RangedU16<MIN, MAX>) -> Self
pub const fn Some(value: RangedU16<MIN, MAX>) -> Self
Creates an optional ranged value that is present.
Sourcepub const fn get(self) -> Option<RangedU16<MIN, MAX>>
pub const fn get(self) -> Option<RangedU16<MIN, MAX>>
Returns the value as the standard library’s Option
type.
Sourcepub const unsafe fn some_unchecked(value: u16) -> Self
pub const unsafe fn some_unchecked(value: u16) -> Self
Creates an optional ranged integer without checking the value.
§Safety
The value must be within the range MIN..=MAX
. As the value used for niche
value optimization is unspecified, the provided value must not be the niche
value.
Sourcepub(crate) const fn inner(self) -> u16
pub(crate) const fn inner(self) -> u16
Obtain the inner value of the struct. This is useful for comparisons.
Sourcepub const fn get_primitive(self) -> Option<u16>
pub const fn get_primitive(self) -> Option<u16>
Obtain the value of the struct as an Option
of the primitive type.
Trait Implementations§
Source§impl<const MIN: u16, const MAX: u16> Clone for OptionRangedU16<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Clone for OptionRangedU16<MIN, MAX>
Source§fn clone(&self) -> OptionRangedU16<MIN, MAX>
fn clone(&self) -> OptionRangedU16<MIN, MAX>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de, const MIN: u16, const MAX: u16> Deserialize<'de> for OptionRangedU16<MIN, MAX>
impl<'de, const MIN: u16, const MAX: u16> Deserialize<'de> for OptionRangedU16<MIN, MAX>
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Source§impl<const MIN: u16, const MAX: u16> From<Option<RangedU16<MIN, MAX>>> for OptionRangedU16<MIN, MAX>
impl<const MIN: u16, const MAX: u16> From<Option<RangedU16<MIN, MAX>>> for OptionRangedU16<MIN, MAX>
Source§impl<const MIN: u16, const MAX: u16> From<OptionRangedU16<MIN, MAX>> for Option<RangedU16<MIN, MAX>>
impl<const MIN: u16, const MAX: u16> From<OptionRangedU16<MIN, MAX>> for Option<RangedU16<MIN, MAX>>
Source§fn from(value: OptionRangedU16<MIN, MAX>) -> Self
fn from(value: OptionRangedU16<MIN, MAX>) -> Self
Source§impl<const MIN: u16, const MAX: u16> Ord for OptionRangedU16<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Ord for OptionRangedU16<MIN, MAX>
Source§impl<const MIN_A: u16, const MAX_A: u16, const MIN_B: u16, const MAX_B: u16> PartialEq<OptionRangedU16<MIN_B, MAX_B>> for OptionRangedU16<MIN_A, MAX_A>
impl<const MIN_A: u16, const MAX_A: u16, const MIN_B: u16, const MAX_B: u16> PartialEq<OptionRangedU16<MIN_B, MAX_B>> for OptionRangedU16<MIN_A, MAX_A>
Source§fn eq(&self, other: &OptionRangedU16<MIN_B, MAX_B>) -> bool
fn eq(&self, other: &OptionRangedU16<MIN_B, MAX_B>) -> bool
self
and other
values to be equal, and is used by ==
.