#[repr(transparent)]
pub struct OptionRangedU32<const MIN: u32, const MAX: u32>(pub(crate) u32);
Expand description

A RangedU32 that is optional. Equivalent to Option<RangedU32> with niche value optimization.

If MIN is u32::MIN and MAX is u32::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 OptionRangedU32::get.

Tuple Fields§

§0: u32

Implementations§

source§

impl<const MIN: u32, const MAX: u32> OptionRangedU32<MIN, MAX>

source

pub(crate) const NICHE: u32 = _

The value used as the niche. Must not be in the range MIN..=MAX.

source

pub const None: Self = _

An optional ranged value that is not present.

source

pub const fn Some(value: RangedU32<MIN, MAX>) -> Self

Creates an optional ranged value that is present.

source

pub const fn get(self) -> Option<RangedU32<MIN, MAX>>

Returns the value as the standard library’s Option type.

source

pub const unsafe fn some_unchecked(value: u32) -> 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.

source

pub(crate) const fn inner(self) -> u32

Obtain the inner value of the struct. This is useful for comparisons.

source

pub const fn get_primitive(self) -> Option<u32>

source

pub const fn is_none(self) -> bool

Returns true if the value is the niche value.

source

pub const fn is_some(self) -> bool

Returns true if the value is not the niche value.

Trait Implementations§

source§

impl<const MIN: u32, const MAX: u32> Clone for OptionRangedU32<MIN, MAX>

source§

fn clone(&self) -> OptionRangedU32<MIN, MAX>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const MIN: u32, const MAX: u32> Debug for OptionRangedU32<MIN, MAX>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const MIN: u32, const MAX: u32> Default for OptionRangedU32<MIN, MAX>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<const MIN: u32, const MAX: u32> From<Option<RangedU32<MIN, MAX>>> for OptionRangedU32<MIN, MAX>

source§

fn from(value: Option<RangedU32<MIN, MAX>>) -> Self

Converts to this type from the input type.
source§

impl<const MIN: u32, const MAX: u32> From<OptionRangedU32<MIN, MAX>> for Option<RangedU32<MIN, MAX>>

source§

fn from(value: OptionRangedU32<MIN, MAX>) -> Self

Converts to this type from the input type.
source§

impl<const MIN: u32, const MAX: u32> From<RangedU32<MIN, MAX>> for OptionRangedU32<MIN, MAX>

source§

fn from(value: RangedU32<MIN, MAX>) -> Self

Converts to this type from the input type.
source§

impl<const MIN: u32, const MAX: u32> Hash for OptionRangedU32<MIN, MAX>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<const MIN: u32, const MAX: u32> Ord for OptionRangedU32<MIN, MAX>

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<const MIN_A: u32, const MAX_A: u32, const MIN_B: u32, const MAX_B: u32> PartialEq<OptionRangedU32<MIN_B, MAX_B>> for OptionRangedU32<MIN_A, MAX_A>

source§

fn eq(&self, other: &OptionRangedU32<MIN_B, MAX_B>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const MIN_A: u32, const MAX_A: u32, const MIN_B: u32, const MAX_B: u32> PartialOrd<OptionRangedU32<MIN_B, MAX_B>> for OptionRangedU32<MIN_A, MAX_A>

source§

fn partial_cmp(&self, other: &OptionRangedU32<MIN_B, MAX_B>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<const MIN: u32, const MAX: u32> Copy for OptionRangedU32<MIN, MAX>

source§

impl<const MIN: u32, const MAX: u32> Eq for OptionRangedU32<MIN, MAX>

source§

impl<const MIN: u32, const MAX: u32> StructuralEq for OptionRangedU32<MIN, MAX>

Auto Trait Implementations§

§

impl<const MIN: u32, const MAX: u32> RefUnwindSafe for OptionRangedU32<MIN, MAX>

§

impl<const MIN: u32, const MAX: u32> Send for OptionRangedU32<MIN, MAX>

§

impl<const MIN: u32, const MAX: u32> Sync for OptionRangedU32<MIN, MAX>

§

impl<const MIN: u32, const MAX: u32> Unpin for OptionRangedU32<MIN, MAX>

§

impl<const MIN: u32, const MAX: u32> UnwindSafe for OptionRangedU32<MIN, MAX>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.