Struct core::nonzero::NonZeroExperimental [-]  [+] [src]

pub struct NonZero<T: Zeroable>(_);

A wrapper type for raw pointers and integers that will never be NULL or 0 that might allow certain optimizations.

Methods

impl<T: Zeroable> NonZero<T>

unsafe fn new(inner: T) -> NonZero<T>

Create an instance of NonZero with the provided value. You must indeed ensure that the value is actually "non-zero".

Trait Implementations

impl<T: Zeroable> Deref<T> for NonZero<T>

fn deref<'a>(&'a self) -> &'a T

Derived Implementations

impl<T: Show + Zeroable> Show for NonZero<T>

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl<T: PartialOrd + Zeroable> PartialOrd for NonZero<T>

fn partial_cmp(&self, __arg_0: &NonZero<T>) -> Option<Ordering>

fn lt(&self, __arg_0: &NonZero<T>) -> bool

fn le(&self, __arg_0: &NonZero<T>) -> bool

fn gt(&self, __arg_0: &NonZero<T>) -> bool

fn ge(&self, __arg_0: &NonZero<T>) -> bool

impl<T: Ord + Zeroable> Ord for NonZero<T>

fn cmp(&self, __arg_0: &NonZero<T>) -> Ordering

impl<T: PartialEq + Zeroable> PartialEq for NonZero<T>

fn eq(&self, __arg_0: &NonZero<T>) -> bool

fn ne(&self, __arg_0: &NonZero<T>) -> bool

impl<T: Eq + Zeroable> Eq for NonZero<T>

impl<T: Clone + Zeroable> Clone for NonZero<T>

fn clone(&self) -> NonZero<T>

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

impl<T: Copy + Zeroable> Copy for NonZero<T>