[][src]Struct nonminmax::NonMinI32

#[repr(transparent)]pub struct NonMinI32 { /* fields omitted */ }

An integer of type i32 which is known to not equal i32::MIN.

This type allows for niche filling optimization (similar to the existing std::num::NonZero* types) meaning items such as Option<NonMinI32> and Result<NonMinI32, ()> take up the same amount of space as i32.

// Create using `new`, extract value using `get`
let x = NonMinI32::new(123).unwrap();
assert_eq!(x.get(), 123);

// The value cannot be `i32::MIN`
let y = NonMinI32::new(i32::MIN);
assert_eq!(y, None);

// Niche filling optimization works!
use std::mem::size_of;
assert_eq!(size_of::<i32>(), size_of::<NonMinI32>());
assert_eq!(size_of::<i32>(), size_of::<Option<NonMinI32>>());

Implementations

impl NonMinI32[src]

pub fn new(value: i32) -> Option<Self>[src]

Creates an instance of NonMinI32 by checking if the value is not i32::MIN.

pub unsafe fn new_unchecked(value: i32) -> Self[src]

Creates an instance of NonMinI32 without checking if the value is not i32::MIN.

Safety

The value cannot be equal to i32::MIN.

pub fn get(self) -> i32[src]

Returns the integer value.

Trait Implementations

impl Clone for NonMinI32[src]

impl Copy for NonMinI32[src]

impl Debug for NonMinI32[src]

impl Display for NonMinI32[src]

impl Eq for NonMinI32[src]

impl From<NonMinI32> for i32[src]

impl Hash for NonMinI32[src]

impl Ord for NonMinI32[src]

impl PartialEq<NonMinI32> for NonMinI32[src]

impl PartialOrd<NonMinI32> for NonMinI32[src]

impl StructuralEq for NonMinI32[src]

impl StructuralPartialEq for NonMinI32[src]

Auto Trait Implementations

impl Send for NonMinI32

impl Sync for NonMinI32

impl Unpin for NonMinI32

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.