[−][src]Struct nonminmax::NonMinI8
An integer of type i8
which is known to not equal i8::MIN
.
This type allows for niche filling optimization (similar to the existing std::num::NonZero*
types)
meaning items such as Option<NonMinI8>
and Result<NonMinI8, ()>
take up the same
amount of space as i8
.
// Create using `new`, extract value using `get` let x = NonMinI8::new(123).unwrap(); assert_eq!(x.get(), 123); // The value cannot be `i8::MIN` let y = NonMinI8::new(i8::MIN); assert_eq!(y, None); // Niche filling optimization works! use std::mem::size_of; assert_eq!(size_of::<i8>(), size_of::<NonMinI8>()); assert_eq!(size_of::<i8>(), size_of::<Option<NonMinI8>>());
Methods
impl NonMinI8
[src]
pub fn new(value: i8) -> Option<Self>
[src]
Creates an instance of NonMinI8
by checking if the value is not i8::MIN
.
pub unsafe fn new_unchecked(value: i8) -> Self
[src]
Creates an instance of NonMinI8
without checking if the value is not i8::MIN
.
Safety
The value cannot be equal to i8::MIN
.
pub fn get(self) -> i8
[src]
Returns the integer value.
Trait Implementations
impl Clone for NonMinI8
[src]
fn clone(&self) -> NonMinI8
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for NonMinI8
[src]
impl Debug for NonMinI8
[src]
impl Display for NonMinI8
[src]
impl Eq for NonMinI8
[src]
impl From<NonMinI8> for i8
[src]
impl Hash for NonMinI8
[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 NonMinI8
[src]
fn cmp(&self, other: &NonMinI8) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<NonMinI8> for NonMinI8
[src]
impl PartialOrd<NonMinI8> for NonMinI8
[src]
fn partial_cmp(&self, other: &NonMinI8) -> Option<Ordering>
[src]
fn lt(&self, other: &NonMinI8) -> bool
[src]
fn le(&self, other: &NonMinI8) -> bool
[src]
fn gt(&self, other: &NonMinI8) -> bool
[src]
fn ge(&self, other: &NonMinI8) -> bool
[src]
impl StructuralEq for NonMinI8
[src]
impl StructuralPartialEq for NonMinI8
[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>,