Struct std::num::NonZeroIsize
[−]
[src]
pub struct NonZeroIsize(_);
: signed non-zero integers are considered for removal due to lack of known use cases. If you’re using them, please comment on https://github.com/rust-lang/rust/issues/49137
An integer that is known not to equal zero.
This may enable some memory layout optimization such as:
use std::mem::size_of; assert_eq!(size_of::<Option<std::num::NonZeroU32>>(), size_of::<u32>());Run
Methods
impl NonZeroIsize
[src]
impl NonZeroIsize
pub const unsafe fn new_unchecked(n: isize) -> NonZeroIsize
[src]
pub const unsafe fn new_unchecked(n: isize) -> NonZeroIsize
pub fn new(n: isize) -> Option<NonZeroIsize>
[src]
pub fn new(n: isize) -> Option<NonZeroIsize>
Create a non-zero if the given value is not zero.
pub fn get(self) -> isize
[src]
pub fn get(self) -> isize
Returns the value as a primitive type.
Trait Implementations
impl Copy for NonZeroIsize
[src]
impl Copy for NonZeroIsize
impl Binary for NonZeroIsize
[src]
impl Binary for NonZeroIsize
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Debug for NonZeroIsize
[src]
impl Debug for NonZeroIsize
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Ord for NonZeroIsize
[src]
impl Ord for NonZeroIsize
fn cmp(&self, __arg_0: &NonZeroIsize) -> Ordering
[src]
fn cmp(&self, __arg_0: &NonZeroIsize) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Hash for NonZeroIsize
[src]
impl Hash for NonZeroIsize
fn hash<__H>(&self, __arg_0: &mut __H) where
__H: Hasher,
[src]
fn hash<__H>(&self, __arg_0: &mut __H) where
__H: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl PartialEq<NonZeroIsize> for NonZeroIsize
[src]
impl PartialEq<NonZeroIsize> for NonZeroIsize
fn eq(&self, __arg_0: &NonZeroIsize) -> bool
[src]
fn eq(&self, __arg_0: &NonZeroIsize) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &NonZeroIsize) -> bool
[src]
fn ne(&self, __arg_0: &NonZeroIsize) -> bool
This method tests for !=
.
impl LowerHex for NonZeroIsize
[src]
impl LowerHex for NonZeroIsize
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Display for NonZeroIsize
[src]
impl Display for NonZeroIsize
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl UpperHex for NonZeroIsize
[src]
impl UpperHex for NonZeroIsize
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Clone for NonZeroIsize
[src]
impl Clone for NonZeroIsize
fn clone(&self) -> NonZeroIsize
[src]
fn clone(&self) -> NonZeroIsize
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialOrd<NonZeroIsize> for NonZeroIsize
[src]
impl PartialOrd<NonZeroIsize> for NonZeroIsize
fn partial_cmp(&self, __arg_0: &NonZeroIsize) -> Option<Ordering>
[src]
fn partial_cmp(&self, __arg_0: &NonZeroIsize) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &NonZeroIsize) -> bool
[src]
fn lt(&self, __arg_0: &NonZeroIsize) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &NonZeroIsize) -> bool
[src]
fn le(&self, __arg_0: &NonZeroIsize) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &NonZeroIsize) -> bool
[src]
fn gt(&self, __arg_0: &NonZeroIsize) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &NonZeroIsize) -> bool
[src]
fn ge(&self, __arg_0: &NonZeroIsize) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Octal for NonZeroIsize
[src]
impl Octal for NonZeroIsize
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Eq for NonZeroIsize
[src]
impl Eq for NonZeroIsize
Auto Trait Implementations
impl Send for NonZeroIsize
impl Send for NonZeroIsize
impl Sync for NonZeroIsize
impl Sync for NonZeroIsize