Struct std::num::NonZeroI8 [−][src]
pub struct NonZeroI8(_);
: 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 NonZeroI8[src]
impl NonZeroI8pub const unsafe fn new_unchecked(n: i8) -> NonZeroI8[src]
pub const unsafe fn new_unchecked(n: i8) -> NonZeroI8pub fn new(n: i8) -> Option<NonZeroI8>[src]
pub fn new(n: i8) -> Option<NonZeroI8>Create a non-zero if the given value is not zero.
pub fn get(self) -> i8[src]
pub fn get(self) -> i8Returns the value as a primitive type.
Trait Implementations
impl Binary for NonZeroI8[src]
impl Binary for NonZeroI8fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter.
impl PartialEq<NonZeroI8> for NonZeroI8[src]
impl PartialEq<NonZeroI8> for NonZeroI8fn eq(&self, other: &NonZeroI8) -> bool[src]
fn eq(&self, other: &NonZeroI8) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &NonZeroI8) -> bool[src]
fn ne(&self, other: &NonZeroI8) -> boolThis method tests for !=.
impl Ord for NonZeroI8[src]
impl Ord for NonZeroI8fn cmp(&self, other: &NonZeroI8) -> Ordering[src]
fn cmp(&self, other: &NonZeroI8) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Octal for NonZeroI8[src]
impl Octal for NonZeroI8fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter.
impl PartialOrd<NonZeroI8> for NonZeroI8[src]
impl PartialOrd<NonZeroI8> for NonZeroI8fn partial_cmp(&self, other: &NonZeroI8) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &NonZeroI8) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &NonZeroI8) -> bool[src]
fn lt(&self, other: &NonZeroI8) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &NonZeroI8) -> bool[src]
fn le(&self, other: &NonZeroI8) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &NonZeroI8) -> bool[src]
fn gt(&self, other: &NonZeroI8) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &NonZeroI8) -> bool[src]
fn ge(&self, other: &NonZeroI8) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Display for NonZeroI8[src]
impl Display for NonZeroI8fn 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 NonZeroI8[src]
impl UpperHex for NonZeroI8fn 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 NonZeroI8[src]
impl Debug for NonZeroI8fn 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 LowerHex for NonZeroI8[src]
impl LowerHex for NonZeroI8fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter.
impl Copy for NonZeroI8[src]
impl Copy for NonZeroI8impl Eq for NonZeroI8[src]
impl Eq for NonZeroI8impl Hash for NonZeroI8[src]
impl Hash for NonZeroI8fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
fn hash<__H>(&self, state: &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 Clone for NonZeroI8[src]
impl Clone for NonZeroI8