Struct devela::_std::num::NonZeroUsize
1.28.0 · source · pub struct NonZeroUsize(/* private fields */);
Expand description
An integer that is known not to equal zero.
This enables some memory layout optimization.
For example, Option<NonZeroUsize>
is the same size as usize
:
use std::mem::size_of;
assert_eq!(size_of::<Option<core::num::NonZeroUsize>>(), size_of::<usize>());
Layout
NonZeroUsize
is guaranteed to have the same layout and bit validity as usize
with the exception that 0
is not a valid instance.
Option<NonZeroUsize>
is guaranteed to be compatible with usize
,
including in FFI.
Thanks to the null pointer optimization,
NonZeroUsize
and Option<NonZeroUsize>
are guaranteed to have the same size and alignment:
use std::num::NonZeroUsize;
assert_eq!(size_of::<NonZeroUsize>(), size_of::<Option<NonZeroUsize>>());
assert_eq!(align_of::<NonZeroUsize>(), align_of::<Option<NonZeroUsize>>());
Implementations§
source§impl NonZeroUsize
impl NonZeroUsize
const: 1.28.0 · sourcepub const unsafe fn new_unchecked(n: usize) -> NonZeroUsize
Available on crate feature num
only.
pub const unsafe fn new_unchecked(n: usize) -> NonZeroUsize
num
only.Creates a non-zero without checking whether the value is non-zero. This results in undefined behaviour if the value is zero.
Safety
The value must not be zero.
const: 1.47.0 · sourcepub const fn new(n: usize) -> Option<NonZeroUsize>
Available on crate feature num
only.
pub const fn new(n: usize) -> Option<NonZeroUsize>
num
only.Creates a non-zero if the given value is not zero.
source§impl NonZeroUsize
impl NonZeroUsize
1.53.0 (const: 1.53.0) · sourcepub const fn leading_zeros(self) -> u32
Available on crate feature num
only.
pub const fn leading_zeros(self) -> u32
num
only.Returns the number of leading zeros in the binary representation of self
.
On many architectures, this function can perform better than leading_zeros()
on the underlying integer type, as special handling of zero can be avoided.
Examples
Basic usage:
let n = std::num::NonZeroUsize::new(usize::MAX).unwrap();
assert_eq!(n.leading_zeros(), 0);
1.53.0 (const: 1.53.0) · sourcepub const fn trailing_zeros(self) -> u32
Available on crate feature num
only.
pub const fn trailing_zeros(self) -> u32
num
only.Returns the number of trailing zeros in the binary representation
of self
.
On many architectures, this function can perform better than trailing_zeros()
on the underlying integer type, as special handling of zero can be avoided.
Examples
Basic usage:
let n = std::num::NonZeroUsize::new(0b0101000).unwrap();
assert_eq!(n.trailing_zeros(), 3);
source§impl NonZeroUsize
impl NonZeroUsize
1.64.0 (const: 1.64.0) · sourcepub const fn checked_add(self, other: usize) -> Option<NonZeroUsize>
Available on crate feature num
only.
pub const fn checked_add(self, other: usize) -> Option<NonZeroUsize>
num
only.Adds an unsigned integer to a non-zero value.
Checks for overflow and returns None
on overflow.
As a consequence, the result cannot wrap to zero.
Examples
let one = NonZeroUsize::new(1)?;
let two = NonZeroUsize::new(2)?;
let max = NonZeroUsize::new(usize::MAX)?;
assert_eq!(Some(two), one.checked_add(1));
assert_eq!(None, max.checked_add(1));
1.64.0 (const: 1.64.0) · sourcepub const fn saturating_add(self, other: usize) -> NonZeroUsize
Available on crate feature num
only.
pub const fn saturating_add(self, other: usize) -> NonZeroUsize
num
only.Adds an unsigned integer to a non-zero value.
Return NonZeroUsize::MAX
on overflow.
Examples
let one = NonZeroUsize::new(1)?;
let two = NonZeroUsize::new(2)?;
let max = NonZeroUsize::new(usize::MAX)?;
assert_eq!(two, one.saturating_add(1));
assert_eq!(max, max.saturating_add(1));
sourcepub const unsafe fn unchecked_add(self, other: usize) -> NonZeroUsize
🔬This is a nightly-only experimental API. (nonzero_ops
)Available on crate feature num
only.
pub const unsafe fn unchecked_add(self, other: usize) -> NonZeroUsize
nonzero_ops
)num
only.Adds an unsigned integer to a non-zero value,
assuming overflow cannot occur.
Overflow is unchecked, and it is undefined behaviour to overflow
even if the result would wrap to a non-zero value.
The behaviour is undefined as soon as
self + rhs > usize::MAX
.
Examples
#![feature(nonzero_ops)]
let one = NonZeroUsize::new(1)?;
let two = NonZeroUsize::new(2)?;
assert_eq!(two, unsafe { one.unchecked_add(1) });
1.64.0 (const: 1.64.0) · sourcepub const fn checked_next_power_of_two(self) -> Option<NonZeroUsize>
Available on crate feature num
only.
pub const fn checked_next_power_of_two(self) -> Option<NonZeroUsize>
num
only.Returns the smallest power of two greater than or equal to n.
Checks for overflow and returns None
if the next power of two is greater than the type’s maximum value.
As a consequence, the result cannot wrap to zero.
Examples
let two = NonZeroUsize::new(2)?;
let three = NonZeroUsize::new(3)?;
let four = NonZeroUsize::new(4)?;
let max = NonZeroUsize::new(usize::MAX)?;
assert_eq!(Some(two), two.checked_next_power_of_two() );
assert_eq!(Some(four), three.checked_next_power_of_two() );
assert_eq!(None, max.checked_next_power_of_two() );
1.67.0 (const: 1.67.0) · sourcepub const fn ilog2(self) -> u32
Available on crate feature num
only.
pub const fn ilog2(self) -> u32
num
only.Returns the base 2 logarithm of the number, rounded down.
This is the same operation as
usize::ilog2
,
except that it has no failure cases to worry about
since this value can never be zero.
Examples
assert_eq!(NonZeroUsize::new(7).unwrap().ilog2(), 2);
assert_eq!(NonZeroUsize::new(8).unwrap().ilog2(), 3);
assert_eq!(NonZeroUsize::new(9).unwrap().ilog2(), 3);
1.67.0 (const: 1.67.0) · sourcepub const fn ilog10(self) -> u32
Available on crate feature num
only.
pub const fn ilog10(self) -> u32
num
only.Returns the base 10 logarithm of the number, rounded down.
This is the same operation as
usize::ilog10
,
except that it has no failure cases to worry about
since this value can never be zero.
Examples
assert_eq!(NonZeroUsize::new(99).unwrap().ilog10(), 1);
assert_eq!(NonZeroUsize::new(100).unwrap().ilog10(), 2);
assert_eq!(NonZeroUsize::new(101).unwrap().ilog10(), 2);
const: unstable · sourcepub fn midpoint(self, rhs: NonZeroUsize) -> NonZeroUsize
🔬This is a nightly-only experimental API. (num_midpoint
)Available on crate feature num
only.
pub fn midpoint(self, rhs: NonZeroUsize) -> NonZeroUsize
num_midpoint
)num
only.Calculates the middle point of self
and rhs
.
midpoint(a, b)
is (a + b) >> 1
as if it were performed in a
sufficiently-large signed integral type. This implies that the result is
always rounded towards negative infinity and that no overflow will ever occur.
Examples
#![feature(num_midpoint)]
let one = NonZeroUsize::new(1)?;
let two = NonZeroUsize::new(2)?;
let four = NonZeroUsize::new(4)?;
assert_eq!(one.midpoint(four), two);
assert_eq!(four.midpoint(one), two);
source§impl NonZeroUsize
impl NonZeroUsize
1.64.0 (const: 1.64.0) · sourcepub const fn checked_mul(self, other: NonZeroUsize) -> Option<NonZeroUsize>
Available on crate feature num
only.
pub const fn checked_mul(self, other: NonZeroUsize) -> Option<NonZeroUsize>
num
only.Multiplies two non-zero integers together.
Checks for overflow and returns None
on overflow.
As a consequence, the result cannot wrap to zero.
Examples
let two = NonZeroUsize::new(2)?;
let four = NonZeroUsize::new(4)?;
let max = NonZeroUsize::new(usize::MAX)?;
assert_eq!(Some(four), two.checked_mul(two));
assert_eq!(None, max.checked_mul(two));
1.64.0 (const: 1.64.0) · sourcepub const fn saturating_mul(self, other: NonZeroUsize) -> NonZeroUsize
Available on crate feature num
only.
pub const fn saturating_mul(self, other: NonZeroUsize) -> NonZeroUsize
num
only.Multiplies two non-zero integers together.
Return NonZeroUsize::MAX
on overflow.
Examples
let two = NonZeroUsize::new(2)?;
let four = NonZeroUsize::new(4)?;
let max = NonZeroUsize::new(usize::MAX)?;
assert_eq!(four, two.saturating_mul(two));
assert_eq!(max, four.saturating_mul(max));
sourcepub const unsafe fn unchecked_mul(self, other: NonZeroUsize) -> NonZeroUsize
🔬This is a nightly-only experimental API. (nonzero_ops
)Available on crate feature num
only.
pub const unsafe fn unchecked_mul(self, other: NonZeroUsize) -> NonZeroUsize
nonzero_ops
)num
only.Multiplies two non-zero integers together,
assuming overflow cannot occur.
Overflow is unchecked, and it is undefined behaviour to overflow
even if the result would wrap to a non-zero value.
The behaviour is undefined as soon as
self * rhs > usize::MAX
.
Examples
#![feature(nonzero_ops)]
let two = NonZeroUsize::new(2)?;
let four = NonZeroUsize::new(4)?;
assert_eq!(four, unsafe { two.unchecked_mul(two) });
1.64.0 (const: 1.64.0) · sourcepub const fn checked_pow(self, other: u32) -> Option<NonZeroUsize>
Available on crate feature num
only.
pub const fn checked_pow(self, other: u32) -> Option<NonZeroUsize>
num
only.Raises non-zero value to an integer power.
Checks for overflow and returns None
on overflow.
As a consequence, the result cannot wrap to zero.
Examples
let three = NonZeroUsize::new(3)?;
let twenty_seven = NonZeroUsize::new(27)?;
let half_max = NonZeroUsize::new(usize::MAX / 2)?;
assert_eq!(Some(twenty_seven), three.checked_pow(3));
assert_eq!(None, half_max.checked_pow(3));
1.64.0 (const: 1.64.0) · sourcepub const fn saturating_pow(self, other: u32) -> NonZeroUsize
Available on crate feature num
only.
pub const fn saturating_pow(self, other: u32) -> NonZeroUsize
num
only.Raise non-zero value to an integer power.
Return NonZeroUsize::MAX
on overflow.
Examples
let three = NonZeroUsize::new(3)?;
let twenty_seven = NonZeroUsize::new(27)?;
let max = NonZeroUsize::new(usize::MAX)?;
assert_eq!(twenty_seven, three.saturating_pow(3));
assert_eq!(max, max.saturating_pow(3));
source§impl NonZeroUsize
impl NonZeroUsize
1.59.0 (const: 1.59.0) · sourcepub const fn is_power_of_two(self) -> bool
Available on crate feature num
only.
pub const fn is_power_of_two(self) -> bool
num
only.Returns true
if and only if self == (1 << k)
for some k
.
On many architectures, this function can perform better than is_power_of_two()
on the underlying integer type, as special handling of zero can be avoided.
Examples
Basic usage:
let eight = std::num::NonZeroUsize::new(8).unwrap();
assert!(eight.is_power_of_two());
let ten = std::num::NonZeroUsize::new(10).unwrap();
assert!(!ten.is_power_of_two());
source§impl NonZeroUsize
impl NonZeroUsize
1.70.0 · sourcepub const MIN: NonZeroUsize = _
Available on crate feature num
only.
pub const MIN: NonZeroUsize = _
num
only.The smallest value that can be represented by this non-zero integer type, 1.
Examples
assert_eq!(NonZeroUsize::MIN.get(), 1usize);
1.70.0 · sourcepub const MAX: NonZeroUsize = _
Available on crate feature num
only.
pub const MAX: NonZeroUsize = _
num
only.The largest value that can be represented by this non-zero
integer type,
equal to usize::MAX
.
Examples
assert_eq!(NonZeroUsize::MAX.get(), usize::MAX);
source§impl NonZeroUsize
impl NonZeroUsize
1.67.0 · sourcepub const BITS: u32 = 64u32
Available on crate feature num
only.
pub const BITS: u32 = 64u32
num
only.The size of this non-zero integer type in bits.
This value is equal to usize::BITS
.
Examples
assert_eq!(NonZeroUsize::BITS, usize::BITS);
Trait Implementations§
§impl AsBytes for NonZeroUsize
impl AsBytes for NonZeroUsize
§fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>
fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>
source§impl Binary for NonZeroUsize
impl Binary for NonZeroUsize
1.45.0 · source§impl BitOr<NonZeroUsize> for usize
impl BitOr<NonZeroUsize> for usize
§type Output = NonZeroUsize
type Output = NonZeroUsize
|
operator.source§fn bitor(self, rhs: NonZeroUsize) -> <usize as BitOr<NonZeroUsize>>::Output
fn bitor(self, rhs: NonZeroUsize) -> <usize as BitOr<NonZeroUsize>>::Output
|
operation. Read more1.45.0 · source§impl BitOr<usize> for NonZeroUsize
impl BitOr<usize> for NonZeroUsize
1.45.0 · source§impl BitOr for NonZeroUsize
impl BitOr for NonZeroUsize
§type Output = NonZeroUsize
type Output = NonZeroUsize
|
operator.source§fn bitor(self, rhs: NonZeroUsize) -> <NonZeroUsize as BitOr>::Output
fn bitor(self, rhs: NonZeroUsize) -> <NonZeroUsize as BitOr>::Output
|
operation. Read more1.45.0 · source§impl BitOrAssign<usize> for NonZeroUsize
impl BitOrAssign<usize> for NonZeroUsize
source§fn bitor_assign(&mut self, rhs: usize)
fn bitor_assign(&mut self, rhs: usize)
|=
operation. Read more1.45.0 · source§impl BitOrAssign for NonZeroUsize
impl BitOrAssign for NonZeroUsize
source§fn bitor_assign(&mut self, rhs: NonZeroUsize)
fn bitor_assign(&mut self, rhs: NonZeroUsize)
|=
operation. Read moresource§impl BitSize<64> for NonZeroUsize
Available on crate feature mem
only.
impl BitSize<64> for NonZeroUsize
mem
only.source§const BIT_SIZE: usize = _
const BIT_SIZE: usize = _
source§const MIN_BYTE_SIZE: usize = _
const MIN_BYTE_SIZE: usize = _
source§fn bit_size(&self) -> usize
fn bit_size(&self) -> usize
source§fn min_byte_size(&self) -> usize
fn min_byte_size(&self) -> usize
§impl CheckedBitPattern for NonZeroUsize
impl CheckedBitPattern for NonZeroUsize
§type Bits = usize
type Bits = usize
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.§fn is_valid_bit_pattern(
bits: &<NonZeroUsize as CheckedBitPattern>::Bits
) -> bool
fn is_valid_bit_pattern( bits: &<NonZeroUsize as CheckedBitPattern>::Bits ) -> bool
bits
as &Self
.source§impl Clone for NonZeroUsize
impl Clone for NonZeroUsize
source§fn clone(&self) -> NonZeroUsize
fn clone(&self) -> NonZeroUsize
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Contiguous for NonZeroUsize
impl Contiguous for NonZeroUsize
§type Int = usize
type Int = usize
§const MAX_VALUE: usize = 18_446_744_073_709_551_615usize
const MAX_VALUE: usize = 18_446_744_073_709_551_615usize
§fn from_integer(value: Self::Int) -> Option<Self>
fn from_integer(value: Self::Int) -> Option<Self>
value
is within the range for valid instances of this type,
returns Some(converted_value)
, otherwise, returns None
. Read more§fn into_integer(self) -> Self::Int
fn into_integer(self) -> Self::Int
C
into the underlying integral type. This
mostly exists otherwise generic code would need unsafe for the value as integer
Read moresource§impl Debug for NonZeroUsize
impl Debug for NonZeroUsize
source§impl Display for NonZeroUsize
impl Display for NonZeroUsize
1.51.0 · source§impl Div<NonZeroUsize> for usize
impl Div<NonZeroUsize> for usize
source§impl From<Alignment> for NonZeroUsize
impl From<Alignment> for NonZeroUsize
source§fn from(align: Alignment) -> NonZeroUsize
fn from(align: Alignment) -> NonZeroUsize
1.41.0 · source§impl From<NonZeroU16> for NonZeroUsize
impl From<NonZeroU16> for NonZeroUsize
source§fn from(small: NonZeroU16) -> NonZeroUsize
fn from(small: NonZeroU16) -> NonZeroUsize
Converts NonZeroU16
to NonZeroUsize
losslessly.
1.41.0 · source§impl From<NonZeroU8> for NonZeroUsize
impl From<NonZeroU8> for NonZeroUsize
source§fn from(small: NonZeroU8) -> NonZeroUsize
fn from(small: NonZeroU8) -> NonZeroUsize
Converts NonZeroU8
to NonZeroUsize
losslessly.
1.31.0 · source§impl From<NonZeroUsize> for usize
impl From<NonZeroUsize> for usize
source§fn from(nonzero: NonZeroUsize) -> usize
fn from(nonzero: NonZeroUsize) -> usize
Converts a NonZeroUsize
into an usize
1.35.0 · source§impl FromStr for NonZeroUsize
impl FromStr for NonZeroUsize
§type Err = ParseIntError
type Err = ParseIntError
source§fn from_str(src: &str) -> Result<NonZeroUsize, <NonZeroUsize as FromStr>::Err>
fn from_str(src: &str) -> Result<NonZeroUsize, <NonZeroUsize as FromStr>::Err>
s
to return a value of this type. Read moresource§impl Hash for NonZeroUsize
impl Hash for NonZeroUsize
source§impl LowerHex for NonZeroUsize
impl LowerHex for NonZeroUsize
source§impl Num for NonZeroUsize
Available on crate feature num
only.
impl Num for NonZeroUsize
num
only.§type OpOut = NonZeroUsize
type OpOut = NonZeroUsize
§type OpRhs = NonZeroUsize
type OpRhs = NonZeroUsize
source§fn num_from_ref(from: &Self::Inner) -> Result<Self>
fn num_from_ref(from: &Self::Inner) -> Result<Self>
Self
if given a valid &value
.source§fn num_set_ref(&mut self, value: &Self::Inner) -> Result<()>
fn num_set_ref(&mut self, value: &Self::Inner) -> Result<()>
self
to the given valid &value
.source§fn num_is_zero(&self) -> Result<bool>
fn num_is_zero(&self) -> Result<bool>
true
if self
is zero.source§fn num_is_one(&self) -> Result<bool>
fn num_is_one(&self) -> Result<bool>
true
if self
is one.source§fn num_get_zero() -> Result<Self>
fn num_get_zero() -> Result<Self>
source§fn num_get_one() -> Result<Self>
fn num_get_one() -> Result<Self>
source§fn num_set_zero(&mut self) -> Result<()>
fn num_set_zero(&mut self) -> Result<()>
self
to 0
.source§fn num_set_one(&mut self) -> Result<()>
fn num_set_one(&mut self) -> Result<()>
source§fn num_ref_mul(&self, other: Self) -> Result<Self::OpOut>
fn num_ref_mul(&self, other: Self) -> Result<Self::OpOut>
&self
* other
.source§fn num_ref_add(&self, other: Self) -> Result<Self::OpOut>
fn num_ref_add(&self, other: Self) -> Result<Self::OpOut>
&self
+ other
.source§fn num_ref_sub(&self, other: Self) -> Result<Self::OpOut>
fn num_ref_sub(&self, other: Self) -> Result<Self::OpOut>
&self
- other
.source§fn num_ref_div(&self, other: Self) -> Result<Self::OpOut>
fn num_ref_div(&self, other: Self) -> Result<Self::OpOut>
&self
/ other
.source§fn num_ref_rem(&self, other: Self) -> Result<Self::OpOut>
fn num_ref_rem(&self, other: Self) -> Result<Self::OpOut>
&self
% other
.source§fn num_ref_neg(&self) -> Result<Self::OpOut>
fn num_ref_neg(&self) -> Result<Self::OpOut>
- &self
.source§fn num_ref_abs(&self) -> Result<Self>
fn num_ref_abs(&self) -> Result<Self>
&self
.source§impl Octal for NonZeroUsize
impl Octal for NonZeroUsize
source§impl Ord for NonZeroUsize
impl Ord for NonZeroUsize
source§fn cmp(&self, other: &NonZeroUsize) -> Ordering
fn cmp(&self, other: &NonZeroUsize) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq for NonZeroUsize
impl PartialEq for NonZeroUsize
source§fn eq(&self, other: &NonZeroUsize) -> bool
fn eq(&self, other: &NonZeroUsize) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for NonZeroUsize
impl PartialOrd for NonZeroUsize
source§fn partial_cmp(&self, other: &NonZeroUsize) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroUsize) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more1.51.0 · source§impl Rem<NonZeroUsize> for usize
impl Rem<NonZeroUsize> for usize
1.49.0 · source§impl TryFrom<NonZeroI128> for NonZeroUsize
impl TryFrom<NonZeroI128> for NonZeroUsize
source§fn try_from(
value: NonZeroI128
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI128>>::Error>
fn try_from( value: NonZeroI128 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI128>>::Error>
Attempts to convert NonZeroI128
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroI16> for NonZeroUsize
impl TryFrom<NonZeroI16> for NonZeroUsize
source§fn try_from(
value: NonZeroI16
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI16>>::Error>
fn try_from( value: NonZeroI16 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI16>>::Error>
Attempts to convert NonZeroI16
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroI32> for NonZeroUsize
impl TryFrom<NonZeroI32> for NonZeroUsize
source§fn try_from(
value: NonZeroI32
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI32>>::Error>
fn try_from( value: NonZeroI32 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI32>>::Error>
Attempts to convert NonZeroI32
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroI64> for NonZeroUsize
impl TryFrom<NonZeroI64> for NonZeroUsize
source§fn try_from(
value: NonZeroI64
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI64>>::Error>
fn try_from( value: NonZeroI64 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI64>>::Error>
Attempts to convert NonZeroI64
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroI8> for NonZeroUsize
impl TryFrom<NonZeroI8> for NonZeroUsize
source§fn try_from(
value: NonZeroI8
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI8>>::Error>
fn try_from( value: NonZeroI8 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroI8>>::Error>
Attempts to convert NonZeroI8
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroIsize> for NonZeroUsize
impl TryFrom<NonZeroIsize> for NonZeroUsize
source§fn try_from(
value: NonZeroIsize
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroIsize>>::Error>
fn try_from( value: NonZeroIsize ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroIsize>>::Error>
Attempts to convert NonZeroIsize
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroU128> for NonZeroUsize
impl TryFrom<NonZeroU128> for NonZeroUsize
source§fn try_from(
value: NonZeroU128
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroU128>>::Error>
fn try_from( value: NonZeroU128 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroU128>>::Error>
Attempts to convert NonZeroU128
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroU32> for NonZeroUsize
impl TryFrom<NonZeroU32> for NonZeroUsize
source§fn try_from(
value: NonZeroU32
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroU32>>::Error>
fn try_from( value: NonZeroU32 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroU32>>::Error>
Attempts to convert NonZeroU32
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroU64> for NonZeroUsize
impl TryFrom<NonZeroU64> for NonZeroUsize
source§fn try_from(
value: NonZeroU64
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroU64>>::Error>
fn try_from( value: NonZeroU64 ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<NonZeroU64>>::Error>
Attempts to convert NonZeroU64
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl TryFrom<NonZeroUsize> for Alignment
impl TryFrom<NonZeroUsize> for Alignment
§type Error = TryFromIntError
type Error = TryFromIntError
source§fn try_from(
align: NonZeroUsize
) -> Result<Alignment, <Alignment as TryFrom<NonZeroUsize>>::Error>
fn try_from( align: NonZeroUsize ) -> Result<Alignment, <Alignment as TryFrom<NonZeroUsize>>::Error>
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroI128
impl TryFrom<NonZeroUsize> for NonZeroI128
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroI128, <NonZeroI128 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroI128, <NonZeroI128 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroI128
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroI16
impl TryFrom<NonZeroUsize> for NonZeroI16
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroI16, <NonZeroI16 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroI16, <NonZeroI16 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroI16
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroI32
impl TryFrom<NonZeroUsize> for NonZeroI32
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroI32, <NonZeroI32 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroI32, <NonZeroI32 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroI32
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroI64
impl TryFrom<NonZeroUsize> for NonZeroI64
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroI64, <NonZeroI64 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroI64, <NonZeroI64 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroI64
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroI8
impl TryFrom<NonZeroUsize> for NonZeroI8
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroI8, <NonZeroI8 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroI8, <NonZeroI8 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroI8
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroIsize
impl TryFrom<NonZeroUsize> for NonZeroIsize
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroIsize, <NonZeroIsize as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroIsize, <NonZeroIsize as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroIsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroU128
impl TryFrom<NonZeroUsize> for NonZeroU128
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroU128, <NonZeroU128 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroU128, <NonZeroU128 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroU128
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroU16
impl TryFrom<NonZeroUsize> for NonZeroU16
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroU16, <NonZeroU16 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroU16, <NonZeroU16 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroU16
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroU32
impl TryFrom<NonZeroUsize> for NonZeroU32
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroU32, <NonZeroU32 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroU32, <NonZeroU32 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroU32
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroU64
impl TryFrom<NonZeroUsize> for NonZeroU64
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroU64, <NonZeroU64 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroU64, <NonZeroU64 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroU64
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.49.0 · source§impl TryFrom<NonZeroUsize> for NonZeroU8
impl TryFrom<NonZeroUsize> for NonZeroU8
source§fn try_from(
value: NonZeroUsize
) -> Result<NonZeroU8, <NonZeroU8 as TryFrom<NonZeroUsize>>::Error>
fn try_from( value: NonZeroUsize ) -> Result<NonZeroU8, <NonZeroU8 as TryFrom<NonZeroUsize>>::Error>
Attempts to convert NonZeroUsize
to NonZeroU8
.
§type Error = TryFromIntError
type Error = TryFromIntError
1.46.0 · source§impl TryFrom<usize> for NonZeroUsize
impl TryFrom<usize> for NonZeroUsize
source§fn try_from(
value: usize
) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<usize>>::Error>
fn try_from( value: usize ) -> Result<NonZeroUsize, <NonZeroUsize as TryFrom<usize>>::Error>
Attempts to convert usize
to NonZeroUsize
.
§type Error = TryFromIntError
type Error = TryFromIntError
source§impl UpperHex for NonZeroUsize
impl UpperHex for NonZeroUsize
impl Copy for NonZeroUsize
impl Eq for NonZeroUsize
impl IntBufAble for NonZeroUsize
unsafe_text
and text
only.impl NoUninit for NonZeroUsize
impl PodInOption for NonZeroUsize
impl StructuralEq for NonZeroUsize
impl StructuralPartialEq for NonZeroUsize
impl ZeroableInOption for NonZeroUsize
Auto Trait Implementations§
impl RefUnwindSafe for NonZeroUsize
impl Send for NonZeroUsize
impl Sync for NonZeroUsize
impl Unpin for NonZeroUsize
impl UnwindSafe for NonZeroUsize
Blanket Implementations§
source§impl<T> Also for T
impl<T> Also for T
source§impl<T> AnyExt for Twhere
T: Any,
impl<T> AnyExt for Twhere T: Any,
source§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
any
only.self
. Read moresource§fn as_any_ref(&self) -> &dyn Anywhere
Self: Sized,
fn as_any_ref(&self) -> &dyn Anywhere Self: Sized,
any
only.source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere Self: Sized,
any
only.source§impl<T, Res> Apply<Res> for Twhere
T: ?Sized,
impl<T, Res> Apply<Res> for Twhere T: ?Sized,
source§fn apply<F: FnOnce(Self) -> Res>(self, f: F) -> Reswhere
Self: Sized,
fn apply<F: FnOnce(Self) -> Res>(self, f: F) -> Reswhere Self: Sized,
result
only.source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
source§impl<T> Mem for Twhere
T: ?Sized,
impl<T> Mem for Twhere T: ?Sized,
source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
mem
only.source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
mem
only.true
if dropping values of this type matters.source§fn mem_drop(self)where
Self: Sized,
fn mem_drop(self)where Self: Sized,
mem
only.self
by running its destructor.source§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where Self: Sized,
mem
only.self
without running its destructor.source§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere Self: Sized,
mem
only.self
with other, returning the previous value of self
.source§fn mem_take(&mut self) -> Selfwhere
Self: Default,
fn mem_take(&mut self) -> Selfwhere Self: Default,
mem
only.self
with its default value, returning the previous value of self
.source§fn mem_swap(&mut self, other: &mut Self)where
Self: Sized,
fn mem_swap(&mut self, other: &mut Self)where Self: Sized,
mem
only.self
and other
without deinitializing either one.source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
source§impl<T> Size for T
impl<T> Size for T
source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
mem
only.source§const BYTE_SIZE: usize = _
const BYTE_SIZE: usize = _
mem
only.source§const PTR_SIZE: usize = 8usize
const PTR_SIZE: usize = 8usize
mem
only.source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
mem
only.