Struct std::num::NonZeroI32
[−]
[src]
pub struct NonZeroI32(_);
: 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 NonZeroI32
[src]
impl NonZeroI32
pub const unsafe fn new_unchecked(n: i32) -> NonZeroI32
[src]
pub const unsafe fn new_unchecked(n: i32) -> NonZeroI32
pub fn new(n: i32) -> Option<NonZeroI32>
[src]
pub fn new(n: i32) -> Option<NonZeroI32>
Create a non-zero if the given value is not zero.
pub fn get(self) -> i32
[src]
pub fn get(self) -> i32
Returns the value as a primitive type.
Trait Implementations
impl Copy for NonZeroI32
[src]
impl Copy for NonZeroI32
impl Binary for NonZeroI32
[src]
impl Binary for NonZeroI32
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 NonZeroI32
[src]
impl Debug for NonZeroI32
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 NonZeroI32
[src]
impl Ord for NonZeroI32
fn cmp(&self, __arg_0: &NonZeroI32) -> Ordering
[src]
fn cmp(&self, __arg_0: &NonZeroI32) -> 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 NonZeroI32
[src]
impl Hash for NonZeroI32
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<NonZeroI32> for NonZeroI32
[src]
impl PartialEq<NonZeroI32> for NonZeroI32
fn eq(&self, __arg_0: &NonZeroI32) -> bool
[src]
fn eq(&self, __arg_0: &NonZeroI32) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &NonZeroI32) -> bool
[src]
fn ne(&self, __arg_0: &NonZeroI32) -> bool
This method tests for !=
.
impl LowerHex for NonZeroI32
[src]
impl LowerHex for NonZeroI32
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 NonZeroI32
[src]
impl Display for NonZeroI32
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 NonZeroI32
[src]
impl UpperHex for NonZeroI32
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 NonZeroI32
[src]
impl Clone for NonZeroI32
fn clone(&self) -> NonZeroI32
[src]
fn clone(&self) -> NonZeroI32
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<NonZeroI32> for NonZeroI32
[src]
impl PartialOrd<NonZeroI32> for NonZeroI32
fn partial_cmp(&self, __arg_0: &NonZeroI32) -> Option<Ordering>
[src]
fn partial_cmp(&self, __arg_0: &NonZeroI32) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &NonZeroI32) -> bool
[src]
fn lt(&self, __arg_0: &NonZeroI32) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &NonZeroI32) -> bool
[src]
fn le(&self, __arg_0: &NonZeroI32) -> 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: &NonZeroI32) -> bool
[src]
fn gt(&self, __arg_0: &NonZeroI32) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &NonZeroI32) -> bool
[src]
fn ge(&self, __arg_0: &NonZeroI32) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Octal for NonZeroI32
[src]
impl Octal for NonZeroI32
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 NonZeroI32
[src]
impl Eq for NonZeroI32
Auto Trait Implementations
impl Send for NonZeroI32
impl Send for NonZeroI32
impl Sync for NonZeroI32
impl Sync for NonZeroI32