[−][src]Struct nonminmax::NonMinIsize
An integer of type isize which is known to not equal isize::MIN.
This type allows for niche filling optimization (similar to the existing std::num::NonZero* types)
meaning items such as Option<NonMinIsize> and Result<NonMinIsize, ()> take up the same
amount of space as isize.
// Create using `new`, extract value using `get` let x = NonMinIsize::new(123).unwrap(); assert_eq!(x.get(), 123); // The value cannot be `isize::MIN` let y = NonMinIsize::new(isize::MIN); assert_eq!(y, None); // Niche filling optimization works! use std::mem::size_of; assert_eq!(size_of::<isize>(), size_of::<NonMinIsize>()); assert_eq!(size_of::<isize>(), size_of::<Option<NonMinIsize>>());
Methods
impl NonMinIsize[src]
pub fn new(value: isize) -> Option<Self>[src]
Creates an instance of NonMinIsize by checking if the value is not isize::MIN.
pub unsafe fn new_unchecked(value: isize) -> Self[src]
Creates an instance of NonMinIsize without checking if the value is not isize::MIN.
Safety
The value cannot be equal to isize::MIN.
pub fn get(self) -> isize[src]
Returns the integer value.
Trait Implementations
impl Clone for NonMinIsize[src]
fn clone(&self) -> NonMinIsize[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for NonMinIsize[src]
impl Debug for NonMinIsize[src]
impl Display for NonMinIsize[src]
impl Eq for NonMinIsize[src]
impl From<NonMinIsize> for isize[src]
fn from(nontype: NonMinIsize) -> Self[src]
impl Hash for NonMinIsize[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for NonMinIsize[src]
fn cmp(&self, other: &NonMinIsize) -> Ordering[src]
#[must_use]
fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<NonMinIsize> for NonMinIsize[src]
fn eq(&self, other: &NonMinIsize) -> bool[src]
fn ne(&self, other: &NonMinIsize) -> bool[src]
impl PartialOrd<NonMinIsize> for NonMinIsize[src]
fn partial_cmp(&self, other: &NonMinIsize) -> Option<Ordering>[src]
fn lt(&self, other: &NonMinIsize) -> bool[src]
fn le(&self, other: &NonMinIsize) -> bool[src]
fn gt(&self, other: &NonMinIsize) -> bool[src]
fn ge(&self, other: &NonMinIsize) -> bool[src]
impl StructuralEq for NonMinIsize[src]
impl StructuralPartialEq for NonMinIsize[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,