Struct sgx_tstd::num::NonZeroU8 1.28.0[−][src]
#[repr(transparent)]pub struct NonZeroU8(_);
An integer that is known not to equal zero.
This enables some memory layout optimization.
For example, Option<NonZeroU32>
is the same size as u32
:
use std::mem::size_of; assert_eq!(size_of::<Option<std::num::NonZeroU32>>(), size_of::<u32>());
Methods
impl NonZeroU8
[src]
impl NonZeroU8
pub const unsafe fn new_unchecked(n: u8) -> NonZeroU8
[src]
pub const unsafe fn new_unchecked(n: u8) -> NonZeroU8
pub fn new(n: u8) -> Option<NonZeroU8>
[src]
pub fn new(n: u8) -> Option<NonZeroU8>
Create a non-zero if the given value is not zero.
pub fn get(self) -> u8
[src]
pub fn get(self) -> u8
Returns the value as a primitive type.
Trait Implementations
impl UpperHex for NonZeroU8
[src]
impl UpperHex for NonZeroU8
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 NonZeroU8
[src]
impl Clone for NonZeroU8
fn clone(&self) -> NonZeroU8
[src]
fn clone(&self) -> NonZeroU8
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<NonZeroU8> for NonZeroU8
[src]
impl PartialOrd<NonZeroU8> for NonZeroU8
fn partial_cmp(&self, other: &NonZeroU8) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &NonZeroU8) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &NonZeroU8) -> bool
[src]
fn lt(&self, other: &NonZeroU8) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &NonZeroU8) -> bool
[src]
fn le(&self, other: &NonZeroU8) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &NonZeroU8) -> bool
[src]
fn gt(&self, other: &NonZeroU8) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &NonZeroU8) -> bool
[src]
fn ge(&self, other: &NonZeroU8) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Octal for NonZeroU8
[src]
impl Octal for NonZeroU8
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 NonZeroU8
[src]
impl Eq for NonZeroU8
impl Hash for NonZeroU8
[src]
impl Hash for NonZeroU8
fn 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 Binary for NonZeroU8
[src]
impl Binary for NonZeroU8
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 NonZeroU8
[src]
impl Debug for NonZeroU8
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 NonZeroU8
[src]
impl Ord for NonZeroU8
fn cmp(&self, other: &NonZeroU8) -> Ordering
[src]
fn cmp(&self, other: &NonZeroU8) -> 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 PartialEq<NonZeroU8> for NonZeroU8
[src]
impl PartialEq<NonZeroU8> for NonZeroU8
fn eq(&self, other: &NonZeroU8) -> bool
[src]
fn eq(&self, other: &NonZeroU8) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &NonZeroU8) -> bool
[src]
fn ne(&self, other: &NonZeroU8) -> bool
This method tests for !=
.
impl Copy for NonZeroU8
[src]
impl Copy for NonZeroU8
impl LowerHex for NonZeroU8
[src]
impl LowerHex for NonZeroU8
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 NonZeroU8
[src]
impl Display for NonZeroU8