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