pub struct NonZeroInteger16(pub NonZeroI16);Expand description
A 16-bit non-zero integer number, from the set $\Z \setminus 0$,
also known as N0z16.
The range of valid numeric values is $\lbrack$i16::MIN $\dots -1, 1 \dots$ i16::MAX$\rbrack$.
It is equivalent to the NonZeroI16 primitive.
Tuple Fields§
§0: NonZeroI16Implementations§
Source§impl NonZeroInteger16
§Methods for all integers
impl NonZeroInteger16
§Methods for all integers
Sourcepub const fn is_multiple_of(&self, other: &Self) -> bool
pub const fn is_multiple_of(&self, other: &Self) -> bool
Returns true if this integer is a multiple of the other.
Sourcepub const fn is_divisor_of(&self, other: &Self) -> bool
pub const fn is_divisor_of(&self, other: &Self) -> bool
Returns true if this integer is a divisor of the other.
Sourcepub const fn is_coprime(&self, other: &Self) -> bool
pub const fn is_coprime(&self, other: &Self) -> bool
Returns true if self and other are relative primes,
which means they have only 1 as their only common divisor.
§Notation
$a \perp b$.
Source§impl NonZeroInteger16
§Methods for non-negative integers
impl NonZeroInteger16
§Methods for non-negative integers
Source§impl NonZeroInteger16
§Integer addition
impl NonZeroInteger16
§Integer addition
Sourcepub const fn basic_add(self, rhs: NonZeroInteger16) -> NonZeroInteger16
pub const fn basic_add(self, rhs: NonZeroInteger16) -> NonZeroInteger16
Sourcepub const fn checked_add(
self,
rhs: NonZeroInteger16,
) -> Option<NonZeroInteger16>
pub const fn checked_add( self, rhs: NonZeroInteger16, ) -> Option<NonZeroInteger16>
Checked addition.
Returns None if the result is 0, or it overflows.
Sourcepub const fn checked_saturating_add(
self,
rhs: NonZeroInteger16,
) -> Option<NonZeroInteger16>
pub const fn checked_saturating_add( self, rhs: NonZeroInteger16, ) -> Option<NonZeroInteger16>
Saturating addition.
Computes self + rhs, saturating at the numeric bounds instead of overflowing.
§Panics
If the addition results in 0.
Sourcepub const fn checked_wrapping_add(
self,
rhs: NonZeroInteger16,
) -> Option<NonZeroInteger16>
pub const fn checked_wrapping_add( self, rhs: NonZeroInteger16, ) -> Option<NonZeroInteger16>
Wrapping (modular) addition.
Computes self + rhs, wrapping around at the boundary of the type.
Sourcepub const fn overflowing_add(
self,
rhs: NonZeroInteger16,
) -> (Option<NonZeroInteger16>, bool)
pub const fn overflowing_add( self, rhs: NonZeroInteger16, ) -> (Option<NonZeroInteger16>, bool)
Overflowing addition.
Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
Source§impl NonZeroInteger16
impl NonZeroInteger16
Sourcepub const fn new(value: i16) -> NumeraResult<Self>
pub const fn new(value: i16) -> NumeraResult<Self>
Sourcepub const unsafe fn new_unchecked(value: i16) -> Self
Available on crate feature not(safe) only.
pub const unsafe fn new_unchecked(value: i16) -> Self
not(safe) only.Source§impl NonZeroInteger16
§Methods for resizing
impl NonZeroInteger16
§Methods for resizing
Sourcepub fn as_larger(&self) -> NonZeroInteger32
pub fn as_larger(&self) -> NonZeroInteger32
Returns the current number as the next larger bit-size.
This method is not implemented for the largest available bit-size.
Sourcepub fn as_larger_or_same(&self) -> NonZeroInteger32
pub fn as_larger_or_same(&self) -> NonZeroInteger32
Returns the current number as the next larger bit-size, or the same if there’s no larger one available.
Sourcepub fn try_as_larger(&self) -> NumeraResult<NonZeroInteger32>
pub fn try_as_larger(&self) -> NumeraResult<NonZeroInteger32>
Tries to return the current number as the next larger bit-size.
§Errors
If there’s no larger bit-size available.
Sourcepub fn as_smaller_or_same(&self) -> NonZeroIntegers
Available on crate feature try_from only.
pub fn as_smaller_or_same(&self) -> NonZeroIntegers
try_from only.Returns the current number as the next smaller bit-size, or the same if the value can’t fit in the smaller bit-size, or if there’s no smaller bit-size available.
Sourcepub fn try_as_smaller(&self) -> NumeraResult<NonZeroInteger8>
Available on crate feature try_from only.
pub fn try_as_smaller(&self) -> NumeraResult<NonZeroInteger8>
try_from only.Tries to return the current number as the next smaller bit-size.
§Errors
If the value can’t fit in the smaller bit-size, or if there’s no smaller bit-size available.
Trait Implementations§
Source§impl Add for NonZeroInteger16
impl Add for NonZeroInteger16
Source§fn add(self, rhs: NonZeroInteger16) -> Self::Output
fn add(self, rhs: NonZeroInteger16) -> Self::Output
Performs the + operation.
Panics in debug, on overflow. While in release, it performs two’s complement wrapping.
Source§type Output = NonZeroInteger16
type Output = NonZeroInteger16
+ operator.Source§impl AddAssign for NonZeroInteger16
impl AddAssign for NonZeroInteger16
Source§fn add_assign(&mut self, rhs: NonZeroInteger16)
fn add_assign(&mut self, rhs: NonZeroInteger16)
Performs the += operation.
§Panics
Panics in debug, on overflow. While in release, it performs two’s complement wrapping.
Source§impl Bound for NonZeroInteger16
impl Bound for NonZeroInteger16
Source§fn is_lower_bounded(&self) -> bool
fn is_lower_bounded(&self) -> bool
Source§fn is_upper_bounded(&self) -> bool
fn is_upper_bounded(&self) -> bool
Source§fn lower_bound(&self) -> Option<Self>
fn lower_bound(&self) -> Option<Self>
Source§fn upper_bound(&self) -> Option<Self>
fn upper_bound(&self) -> Option<Self>
Source§impl Clone for NonZeroInteger16
impl Clone for NonZeroInteger16
Source§fn clone(&self) -> NonZeroInteger16
fn clone(&self) -> NonZeroInteger16
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl ConstLowerBounded for NonZeroInteger16
impl ConstLowerBounded for NonZeroInteger16
Source§impl ConstNegOne for NonZeroInteger16
impl ConstNegOne for NonZeroInteger16
Source§impl ConstUpperBounded for NonZeroInteger16
impl ConstUpperBounded for NonZeroInteger16
Source§impl Count for NonZeroInteger16
impl Count for NonZeroInteger16
Source§fn is_countable(&self) -> bool
fn is_countable(&self) -> bool
true if the number is countable.Source§fn is_uncountable(&self) -> bool
fn is_uncountable(&self) -> bool
false if the number is countable.Source§impl Countable for NonZeroInteger16
impl Countable for NonZeroInteger16
Source§fn next(&self) -> NumeraResult<Self>
fn next(&self) -> NumeraResult<Self>
Source§fn previous(&self) -> NumeraResult<Self>
fn previous(&self) -> NumeraResult<Self>
Returns the previous countable value, skipping 0.
§Errors
Errors if the operation results in underflow.
Source§impl Debug for NonZeroInteger16
impl Debug for NonZeroInteger16
Source§impl Display for NonZeroInteger16
impl Display for NonZeroInteger16
Source§impl Div for NonZeroInteger16
impl Div for NonZeroInteger16
Source§impl From<&NegativeInteger8> for NonZeroInteger16
impl From<&NegativeInteger8> for NonZeroInteger16
Source§fn from(f: &NegativeInteger8) -> Self
fn from(f: &NegativeInteger8) -> Self
Source§impl From<&NonZero<i16>> for NonZeroInteger16
impl From<&NonZero<i16>> for NonZeroInteger16
Source§fn from(f: &NonZeroI16) -> Self
fn from(f: &NonZeroI16) -> Self
Source§impl From<&NonZeroInteger16> for Integer128
impl From<&NonZeroInteger16> for Integer128
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Integer16
impl From<&NonZeroInteger16> for Integer16
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Integer32
impl From<&NonZeroInteger16> for Integer32
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Integer64
impl From<&NonZeroInteger16> for Integer64
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for IntegerBig
Available on crate feature dashu-int only.
impl From<&NonZeroInteger16> for IntegerBig
dashu-int only.Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroI128
impl From<&NonZeroInteger16> for NonZeroI128
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroI16
impl From<&NonZeroInteger16> for NonZeroI16
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroI32
impl From<&NonZeroInteger16> for NonZeroI32
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroI64
impl From<&NonZeroInteger16> for NonZeroI64
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroInteger128
impl From<&NonZeroInteger16> for NonZeroInteger128
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroInteger32
impl From<&NonZeroInteger16> for NonZeroInteger32
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for NonZeroInteger64
impl From<&NonZeroInteger16> for NonZeroInteger64
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Rational128
impl From<&NonZeroInteger16> for Rational128
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Rational16
impl From<&NonZeroInteger16> for Rational16
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Rational32
impl From<&NonZeroInteger16> for Rational32
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for Rational64
impl From<&NonZeroInteger16> for Rational64
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for i128
impl From<&NonZeroInteger16> for i128
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for i16
impl From<&NonZeroInteger16> for i16
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for i32
impl From<&NonZeroInteger16> for i32
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger16> for i64
impl From<&NonZeroInteger16> for i64
Source§fn from(f: &NonZeroInteger16) -> Self
fn from(f: &NonZeroInteger16) -> Self
Source§impl From<&NonZeroInteger8> for NonZeroInteger16
impl From<&NonZeroInteger8> for NonZeroInteger16
Source§fn from(f: &NonZeroInteger8) -> Self
fn from(f: &NonZeroInteger8) -> Self
Source§impl From<&PositiveInteger8> for NonZeroInteger16
impl From<&PositiveInteger8> for NonZeroInteger16
Source§fn from(f: &PositiveInteger8) -> Self
fn from(f: &PositiveInteger8) -> Self
Source§impl From<&Prime8> for NonZeroInteger16
impl From<&Prime8> for NonZeroInteger16
Source§impl From<&mut NegativeInteger8> for NonZeroInteger16
impl From<&mut NegativeInteger8> for NonZeroInteger16
Source§fn from(f: &mut NegativeInteger8) -> Self
fn from(f: &mut NegativeInteger8) -> Self
Source§impl From<&mut NonZero<i16>> for NonZeroInteger16
impl From<&mut NonZero<i16>> for NonZeroInteger16
Source§fn from(f: &mut NonZeroI16) -> Self
fn from(f: &mut NonZeroI16) -> Self
Source§impl From<&mut NonZeroInteger16> for Integer128
impl From<&mut NonZeroInteger16> for Integer128
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Integer16
impl From<&mut NonZeroInteger16> for Integer16
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Integer32
impl From<&mut NonZeroInteger16> for Integer32
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Integer64
impl From<&mut NonZeroInteger16> for Integer64
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for IntegerBig
Available on crate feature dashu-int only.
impl From<&mut NonZeroInteger16> for IntegerBig
dashu-int only.Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroI128
impl From<&mut NonZeroInteger16> for NonZeroI128
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroI16
impl From<&mut NonZeroInteger16> for NonZeroI16
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroI32
impl From<&mut NonZeroInteger16> for NonZeroI32
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroI64
impl From<&mut NonZeroInteger16> for NonZeroI64
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroInteger128
impl From<&mut NonZeroInteger16> for NonZeroInteger128
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroInteger32
impl From<&mut NonZeroInteger16> for NonZeroInteger32
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for NonZeroInteger64
impl From<&mut NonZeroInteger16> for NonZeroInteger64
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Rational128
impl From<&mut NonZeroInteger16> for Rational128
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Rational16
impl From<&mut NonZeroInteger16> for Rational16
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Rational32
impl From<&mut NonZeroInteger16> for Rational32
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for Rational64
impl From<&mut NonZeroInteger16> for Rational64
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for i128
impl From<&mut NonZeroInteger16> for i128
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for i16
impl From<&mut NonZeroInteger16> for i16
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for i32
impl From<&mut NonZeroInteger16> for i32
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger16> for i64
impl From<&mut NonZeroInteger16> for i64
Source§fn from(f: &mut NonZeroInteger16) -> Self
fn from(f: &mut NonZeroInteger16) -> Self
Source§impl From<&mut NonZeroInteger8> for NonZeroInteger16
impl From<&mut NonZeroInteger8> for NonZeroInteger16
Source§fn from(f: &mut NonZeroInteger8) -> Self
fn from(f: &mut NonZeroInteger8) -> Self
Source§impl From<&mut PositiveInteger8> for NonZeroInteger16
impl From<&mut PositiveInteger8> for NonZeroInteger16
Source§fn from(f: &mut PositiveInteger8) -> Self
fn from(f: &mut PositiveInteger8) -> Self
Source§impl From<&mut Prime8> for NonZeroInteger16
impl From<&mut Prime8> for NonZeroInteger16
Source§impl From<NegativeInteger8> for NonZeroInteger16
impl From<NegativeInteger8> for NonZeroInteger16
Source§fn from(f: NegativeInteger8) -> Self
fn from(f: NegativeInteger8) -> Self
Source§impl From<NonZero<i16>> for NonZeroInteger16
impl From<NonZero<i16>> for NonZeroInteger16
Source§fn from(f: NonZeroI16) -> Self
fn from(f: NonZeroI16) -> Self
Source§impl From<NonZeroInteger16> for Integer128
impl From<NonZeroInteger16> for Integer128
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for Integer16
impl From<NonZeroInteger16> for Integer16
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for Integer32
impl From<NonZeroInteger16> for Integer32
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for Integer64
impl From<NonZeroInteger16> for Integer64
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for IntegerBig
Available on crate feature dashu-int only.
impl From<NonZeroInteger16> for IntegerBig
dashu-int only.Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroI128
impl From<NonZeroInteger16> for NonZeroI128
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroI16
impl From<NonZeroInteger16> for NonZeroI16
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroI32
impl From<NonZeroInteger16> for NonZeroI32
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroI64
impl From<NonZeroInteger16> for NonZeroI64
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroInteger128
impl From<NonZeroInteger16> for NonZeroInteger128
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroInteger32
impl From<NonZeroInteger16> for NonZeroInteger32
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroInteger64
impl From<NonZeroInteger16> for NonZeroInteger64
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for NonZeroIntegers
impl From<NonZeroInteger16> for NonZeroIntegers
Source§fn from(z: NonZeroInteger16) -> NonZeroIntegers
fn from(z: NonZeroInteger16) -> NonZeroIntegers
Source§impl From<NonZeroInteger16> for Rational128
impl From<NonZeroInteger16> for Rational128
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for Rational16
impl From<NonZeroInteger16> for Rational16
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for Rational32
impl From<NonZeroInteger16> for Rational32
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for Rational64
impl From<NonZeroInteger16> for Rational64
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for i128
impl From<NonZeroInteger16> for i128
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for i16
impl From<NonZeroInteger16> for i16
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for i32
impl From<NonZeroInteger16> for i32
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger16> for i64
impl From<NonZeroInteger16> for i64
Source§fn from(f: NonZeroInteger16) -> Self
fn from(f: NonZeroInteger16) -> Self
Source§impl From<NonZeroInteger8> for NonZeroInteger16
impl From<NonZeroInteger8> for NonZeroInteger16
Source§fn from(f: NonZeroInteger8) -> Self
fn from(f: NonZeroInteger8) -> Self
Source§impl From<PositiveInteger8> for NonZeroInteger16
impl From<PositiveInteger8> for NonZeroInteger16
Source§fn from(f: PositiveInteger8) -> Self
fn from(f: PositiveInteger8) -> Self
Source§impl From<Prime8> for NonZeroInteger16
impl From<Prime8> for NonZeroInteger16
Source§impl Hash for NonZeroInteger16
impl Hash for NonZeroInteger16
Source§impl Ident for NonZeroInteger16
impl Ident for NonZeroInteger16
Source§fn can_neg_one(&self) -> bool
fn can_neg_one(&self) -> bool
true if the number can represent -1,
the additive inverse of the multiplicative identity. Read moreSource§fn is_neg_one(&self) -> bool
fn is_neg_one(&self) -> bool
true if the current value is -1,
the additive inverse of the multiplicative identity.Source§impl Integer for NonZeroInteger16
impl Integer for NonZeroInteger16
Source§fn integer_is_even(&self) -> bool
fn integer_is_even(&self) -> bool
true if this integer is even.Source§fn integer_is_multiple_of(&self, other: &Self) -> bool
fn integer_is_multiple_of(&self, other: &Self) -> bool
true if this integer is a multiple of the other.Source§fn integer_is_prime(&self) -> Option<bool>
fn integer_is_prime(&self) -> Option<bool>
Some(true) if this integer is prime, Some(false) if it’s not
prime, or None if it can not be determined. Read moreSource§fn integer_gcd(&self, other: &Self) -> Option<Self>
fn integer_gcd(&self, other: &Self) -> Option<Self>
other. Read moreSource§fn integer_lcm(&self, other: &Self) -> Option<Self>
fn integer_lcm(&self, other: &Self) -> Option<Self>
other. Read moreSource§fn integer_digits(&self) -> usize
fn integer_digits(&self) -> usize
Source§fn integer_is_odd(&self) -> bool
fn integer_is_odd(&self) -> bool
true if this integer is odd.Source§fn integer_is_divisor_of(&self, other: &Self) -> bool
fn integer_is_divisor_of(&self, other: &Self) -> bool
true if this integer is a divisor of the other.Source§impl LowerBounded for NonZeroInteger16
impl LowerBounded for NonZeroInteger16
Source§impl Mul for NonZeroInteger16
impl Mul for NonZeroInteger16
Source§impl Neg for NonZeroInteger16
impl Neg for NonZeroInteger16
Source§impl NegOne for NonZeroInteger16
impl NegOne for NonZeroInteger16
Source§fn new_neg_one() -> Self
fn new_neg_one() -> Self
-1.Source§fn set_neg_one(&mut self)where
Self: Sized,
fn set_neg_one(&mut self)where
Self: Sized,
-1.Source§impl Number for NonZeroInteger16
impl Number for NonZeroInteger16
Source§fn from_inner_repr(value: Self::InnerRepr) -> NumeraResult<Self>
fn from_inner_repr(value: Self::InnerRepr) -> NumeraResult<Self>
Source§unsafe fn from_inner_repr_unchecked(value: Self::InnerRepr) -> Self
Available on crate feature not(safe) only.
unsafe fn from_inner_repr_unchecked(value: Self::InnerRepr) -> Self
not(safe) only.Source§fn from_innermost_repr(value: Self::InnermostRepr) -> NumeraResult<Self>
fn from_innermost_repr(value: Self::InnermostRepr) -> NumeraResult<Self>
Source§unsafe fn from_innermost_repr_unchecked(value: Self::InnermostRepr) -> Self
Available on crate feature not(safe) only.
unsafe fn from_innermost_repr_unchecked(value: Self::InnermostRepr) -> Self
not(safe) only.Source§type InnermostRepr = i16
type InnermostRepr = i16
Source§fn into_inner_repr(self) -> Self::InnerRepr
fn into_inner_repr(self) -> Self::InnerRepr
Source§fn into_innermost_repr(self) -> Self::InnermostRepr
fn into_innermost_repr(self) -> Self::InnermostRepr
Source§fn try_from_inner_repr(inner: impl Into<Self::InnerRepr>) -> NumeraResult<Self>where
Self: Sized,
fn try_from_inner_repr(inner: impl Into<Self::InnerRepr>) -> NumeraResult<Self>where
Self: Sized,
inner representation. Read moreSource§impl One for NonZeroInteger16
impl One for NonZeroInteger16
Source§impl Ord for NonZeroInteger16
impl Ord for NonZeroInteger16
Source§fn cmp(&self, other: &NonZeroInteger16) -> Ordering
fn cmp(&self, other: &NonZeroInteger16) -> 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 NonZeroInteger16
impl PartialEq for NonZeroInteger16
Source§impl PartialOrd for NonZeroInteger16
impl PartialOrd for NonZeroInteger16
Source§impl Rem for NonZeroInteger16
impl Rem for NonZeroInteger16
Source§impl Sign for NonZeroInteger16
impl Sign for NonZeroInteger16
Source§fn can_negative(&self) -> bool
fn can_negative(&self) -> bool
true if the type can represent negative numbers.Source§fn can_positive(&self) -> bool
fn can_positive(&self) -> bool
true if the type can represent positive numbers.Source§fn is_negative(&self) -> bool
fn is_negative(&self) -> bool
true if the value is negative (< 0).Source§fn is_positive(&self) -> bool
fn is_positive(&self) -> bool
true if the value is positive (> 0).Source§impl Sub for NonZeroInteger16
impl Sub for NonZeroInteger16
Source§impl Sum for NonZeroInteger16
impl Sum for NonZeroInteger16
Source§impl TryFrom<&Integer128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Integer128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Integer128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Integer128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Integer16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Integer16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Integer16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Integer16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Integer32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Integer32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Integer32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Integer32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Integer64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Integer64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Integer64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Integer64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Integer8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Integer8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Integer8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Integer8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NegativeInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NegativeInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NegativeInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NegativeInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NegativeInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NegativeInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NegativeInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NegativeInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NegativeInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NegativeInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NegativeInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonNegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonNegativeInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonNegativeInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonNegativeInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonNegativeInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonNegativeInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonNegativeInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonNegativeInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonNegativeInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonNegativeInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonNegativeInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonNegativeInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonNegativeInteger8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonNegativeInteger8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonNegativeInteger8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonPositiveInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonPositiveInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonPositiveInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonPositiveInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonPositiveInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonPositiveInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonPositiveInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonPositiveInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonPositiveInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonPositiveInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonPositiveInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonPositiveInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonPositiveInteger8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonPositiveInteger8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonPositiveInteger8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<i128>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<i128>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroI128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroI128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<i32>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<i32>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroI32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroI32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<i64>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<i64>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroI64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroI64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<u128>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<u128>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroU128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroU128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<u16>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<u16>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroU16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroU16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<u32>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<u32>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroU32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroU32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZero<u64>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZero<u64>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroU64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroU64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZeroInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZeroInteger16> for Integer8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for Integer8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<Integer8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<Integer8>
Source§impl TryFrom<&NonZeroInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NegativeInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger128>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger128>
Source§impl TryFrom<&NonZeroInteger16> for NegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NegativeInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger16>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger16>
Source§impl TryFrom<&NonZeroInteger16> for NegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NegativeInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger32>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger32>
Source§impl TryFrom<&NonZeroInteger16> for NegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NegativeInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger64>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger64>
Source§impl TryFrom<&NonZeroInteger16> for NegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NegativeInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NegativeInteger8>
Source§impl TryFrom<&NonZeroInteger16> for NonNegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonNegativeInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger128>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger128>
Source§impl TryFrom<&NonZeroInteger16> for NonNegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonNegativeInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger16>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger16>
Source§impl TryFrom<&NonZeroInteger16> for NonNegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonNegativeInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger32>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger32>
Source§impl TryFrom<&NonZeroInteger16> for NonNegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonNegativeInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger64>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger64>
Source§impl TryFrom<&NonZeroInteger16> for NonNegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonNegativeInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonNegativeInteger8>
Source§impl TryFrom<&NonZeroInteger16> for NonPositiveInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonPositiveInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger128>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger128>
Source§impl TryFrom<&NonZeroInteger16> for NonPositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonPositiveInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger16>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger16>
Source§impl TryFrom<&NonZeroInteger16> for NonPositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonPositiveInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger32>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger32>
Source§impl TryFrom<&NonZeroInteger16> for NonPositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonPositiveInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger64>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger64>
Source§impl TryFrom<&NonZeroInteger16> for NonPositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonPositiveInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonPositiveInteger8>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroI8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroI8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroI8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroI8>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroU128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroU128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU128>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU128>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroU16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroU16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU16>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU16>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroU32
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroU32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU32>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU32>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroU64
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroU64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU64>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU64>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroU8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroU8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroU8>
Source§impl TryFrom<&NonZeroInteger16> for NonZeroInteger8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NonZeroInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroInteger8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<NonZeroInteger8>
Source§impl TryFrom<&NonZeroInteger16> for PositiveInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for PositiveInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger128>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger128>
Source§impl TryFrom<&NonZeroInteger16> for PositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for PositiveInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger16>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger16>
Source§impl TryFrom<&NonZeroInteger16> for PositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for PositiveInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger32>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger32>
Source§impl TryFrom<&NonZeroInteger16> for PositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for PositiveInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger64>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger64>
Source§impl TryFrom<&NonZeroInteger16> for PositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for PositiveInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<PositiveInteger8>
Source§impl TryFrom<&NonZeroInteger16> for Rational8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for Rational8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<Rational8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<Rational8>
Source§impl TryFrom<&NonZeroInteger16> for i8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for i8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<i8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<i8>
Source§impl TryFrom<&NonZeroInteger16> for u128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for u128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<u128>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<u128>
Source§impl TryFrom<&NonZeroInteger16> for u16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for u16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<u16>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<u16>
Source§impl TryFrom<&NonZeroInteger16> for u32
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for u32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<u32>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<u32>
Source§impl TryFrom<&NonZeroInteger16> for u64
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for u64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<u64>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<u64>
Source§impl TryFrom<&NonZeroInteger16> for u8
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for u8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger16) -> NumeraResult<u8>
fn try_from(f: &NonZeroInteger16) -> NumeraResult<u8>
Source§impl TryFrom<&NonZeroInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&NonZeroInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &NonZeroInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &NonZeroInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&PositiveInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &PositiveInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &PositiveInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&PositiveInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &PositiveInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &PositiveInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&PositiveInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &PositiveInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &PositiveInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&PositiveInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &PositiveInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &PositiveInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Prime128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Prime128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Prime128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Prime128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Prime16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Prime16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Prime16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Prime16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Prime32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Prime32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Prime32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Prime32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&Prime64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&Prime64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &Prime64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &Prime64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&i128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&i128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &i128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &i128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&i16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&i16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &i16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &i16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&i32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&i32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &i32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &i32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&i64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&i64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &i64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &i64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&i8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&i8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &i8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &i8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Integer128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Integer128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Integer128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Integer128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Integer16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Integer16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Integer16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Integer16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Integer32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Integer32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Integer32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Integer32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Integer64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Integer64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Integer64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Integer64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Integer8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Integer8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Integer8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Integer8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NegativeInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NegativeInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NegativeInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NegativeInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NegativeInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NegativeInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NegativeInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NegativeInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NegativeInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NegativeInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NegativeInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonNegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonNegativeInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonNegativeInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonNegativeInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonNegativeInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonNegativeInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonNegativeInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonNegativeInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonNegativeInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonNegativeInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonNegativeInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonNegativeInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonNegativeInteger8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonNegativeInteger8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonNegativeInteger8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonPositiveInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonPositiveInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonPositiveInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonPositiveInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonPositiveInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonPositiveInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonPositiveInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonPositiveInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonPositiveInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonPositiveInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonPositiveInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonPositiveInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonPositiveInteger8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonPositiveInteger8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonPositiveInteger8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<i128>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<i128>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroI128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroI128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<i32>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<i32>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroI32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroI32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<i64>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<i64>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroI64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroI64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<u128>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<u128>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroU128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroU128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<u16>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<u16>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroU16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroU16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<u32>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<u32>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroU32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroU32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZero<u64>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZero<u64>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroU64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroU64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZeroInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZeroInteger16> for Integer8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for Integer8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<Integer8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<Integer8>
Source§impl TryFrom<&mut NonZeroInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NegativeInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger128>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger128>
Source§impl TryFrom<&mut NonZeroInteger16> for NegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NegativeInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger16>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger16>
Source§impl TryFrom<&mut NonZeroInteger16> for NegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NegativeInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger32>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger32>
Source§impl TryFrom<&mut NonZeroInteger16> for NegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NegativeInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger64>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger64>
Source§impl TryFrom<&mut NonZeroInteger16> for NegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NegativeInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NegativeInteger8>
Source§impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger128>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger128>
Source§impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger16>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger16>
Source§impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger32>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger32>
Source§impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger64>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger64>
Source§impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonNegativeInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonNegativeInteger8>
Source§impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger128>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger128>
Source§impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger16>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger16>
Source§impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger32>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger32>
Source§impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger64>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger64>
Source§impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonPositiveInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonPositiveInteger8>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroI8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroI8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroI8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroI8>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroU128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroU128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU128>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU128>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroU16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroU16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU16>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU16>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroU32
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroU32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU32>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU32>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroU64
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroU64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU64>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU64>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroU8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroU8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroU8>
Source§impl TryFrom<&mut NonZeroInteger16> for NonZeroInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NonZeroInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroInteger8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<NonZeroInteger8>
Source§impl TryFrom<&mut NonZeroInteger16> for PositiveInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for PositiveInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger128>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger128>
Source§impl TryFrom<&mut NonZeroInteger16> for PositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for PositiveInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger16>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger16>
Source§impl TryFrom<&mut NonZeroInteger16> for PositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for PositiveInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger32>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger32>
Source§impl TryFrom<&mut NonZeroInteger16> for PositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for PositiveInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger64>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger64>
Source§impl TryFrom<&mut NonZeroInteger16> for PositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for PositiveInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<PositiveInteger8>
Source§impl TryFrom<&mut NonZeroInteger16> for Rational8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for Rational8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<Rational8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<Rational8>
Source§impl TryFrom<&mut NonZeroInteger16> for i8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for i8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<i8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<i8>
Source§impl TryFrom<&mut NonZeroInteger16> for u128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for u128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u128>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u128>
Source§impl TryFrom<&mut NonZeroInteger16> for u16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for u16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u16>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u16>
Source§impl TryFrom<&mut NonZeroInteger16> for u32
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for u32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u32>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u32>
Source§impl TryFrom<&mut NonZeroInteger16> for u64
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for u64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u64>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u64>
Source§impl TryFrom<&mut NonZeroInteger16> for u8
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for u8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u8>
fn try_from(f: &mut NonZeroInteger16) -> NumeraResult<u8>
Source§impl TryFrom<&mut NonZeroInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut NonZeroInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut NonZeroInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut NonZeroInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut PositiveInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut PositiveInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut PositiveInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut PositiveInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut PositiveInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut PositiveInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut PositiveInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut PositiveInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut PositiveInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut PositiveInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut PositiveInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut PositiveInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Prime128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Prime128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Prime128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Prime128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Prime16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Prime16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Prime16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Prime16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Prime32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Prime32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Prime32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Prime32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut Prime64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut Prime64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut Prime64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut Prime64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut i128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut i128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut i128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut i128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut i16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut i16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut i16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut i16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut i32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut i32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut i32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut i32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut i64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut i64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut i64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut i64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut i8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut i8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut i8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut i8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut u128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut u128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut u128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut u128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut u16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut u16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut u16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut u16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut u32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut u32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut u32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut u32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut u64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut u64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut u64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut u64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&mut u8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut u8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &mut u8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &mut u8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&u128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&u128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &u128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &u128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&u16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&u16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &u16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &u16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&u32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&u32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &u32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &u32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&u64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&u64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &u64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &u64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<&u8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&u8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: &u8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: &u8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Integer128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Integer128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Integer128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Integer128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Integer16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Integer16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Integer16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Integer16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Integer32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Integer32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Integer32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Integer32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Integer64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Integer64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Integer64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Integer64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Integer8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Integer8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Integer8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Integer8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NegativeInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NegativeInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NegativeInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NegativeInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NegativeInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NegativeInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NegativeInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NegativeInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NegativeInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NegativeInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NegativeInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonNegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonNegativeInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonNegativeInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonNegativeInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonNegativeInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonNegativeInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonNegativeInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonNegativeInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonNegativeInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonNegativeInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonNegativeInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonNegativeInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonNegativeInteger8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonNegativeInteger8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonNegativeInteger8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonPositiveInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonPositiveInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonPositiveInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonPositiveInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonPositiveInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonPositiveInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonPositiveInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonPositiveInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonPositiveInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonPositiveInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonPositiveInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonPositiveInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonPositiveInteger8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonPositiveInteger8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonPositiveInteger8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<i128>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<i128>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroI128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroI128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<i32>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<i32>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroI32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroI32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<i64>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<i64>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroI64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroI64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<u128>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<u128>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroU128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroU128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<u16>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<u16>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroU16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroU16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<u32>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<u32>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroU32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroU32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZero<u64>> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZero<u64>> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroU64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroU64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZeroInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZeroInteger16> for Integer8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for Integer8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<Integer8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<Integer8>
Source§impl TryFrom<NonZeroInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NegativeInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger128>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger128>
Source§impl TryFrom<NonZeroInteger16> for NegativeInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NegativeInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger16>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger16>
Source§impl TryFrom<NonZeroInteger16> for NegativeInteger32
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NegativeInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger32>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger32>
Source§impl TryFrom<NonZeroInteger16> for NegativeInteger64
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NegativeInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger64>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger64>
Source§impl TryFrom<NonZeroInteger16> for NegativeInteger8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NegativeInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NegativeInteger8>
Source§impl TryFrom<NonZeroInteger16> for NonNegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonNegativeInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger128>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger128>
Source§impl TryFrom<NonZeroInteger16> for NonNegativeInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonNegativeInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger16>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger16>
Source§impl TryFrom<NonZeroInteger16> for NonNegativeInteger32
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonNegativeInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger32>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger32>
Source§impl TryFrom<NonZeroInteger16> for NonNegativeInteger64
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonNegativeInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger64>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger64>
Source§impl TryFrom<NonZeroInteger16> for NonNegativeInteger8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonNegativeInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonNegativeInteger8>
Source§impl TryFrom<NonZeroInteger16> for NonPositiveInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonPositiveInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger128>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger128>
Source§impl TryFrom<NonZeroInteger16> for NonPositiveInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonPositiveInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger16>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger16>
Source§impl TryFrom<NonZeroInteger16> for NonPositiveInteger32
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonPositiveInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger32>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger32>
Source§impl TryFrom<NonZeroInteger16> for NonPositiveInteger64
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonPositiveInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger64>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger64>
Source§impl TryFrom<NonZeroInteger16> for NonPositiveInteger8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonPositiveInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonPositiveInteger8>
Source§impl TryFrom<NonZeroInteger16> for NonZeroI8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroI8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroI8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroI8>
Source§impl TryFrom<NonZeroInteger16> for NonZeroU128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroU128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU128>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU128>
Source§impl TryFrom<NonZeroInteger16> for NonZeroU16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroU16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU16>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU16>
Source§impl TryFrom<NonZeroInteger16> for NonZeroU32
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroU32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU32>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU32>
Source§impl TryFrom<NonZeroInteger16> for NonZeroU64
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroU64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU64>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU64>
Source§impl TryFrom<NonZeroInteger16> for NonZeroU8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroU8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroU8>
Source§impl TryFrom<NonZeroInteger16> for NonZeroInteger8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NonZeroInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroInteger8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<NonZeroInteger8>
Source§impl TryFrom<NonZeroInteger16> for PositiveInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for PositiveInteger128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger128>
fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger128>
Source§impl TryFrom<NonZeroInteger16> for PositiveInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for PositiveInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger16>
fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger16>
Source§impl TryFrom<NonZeroInteger16> for PositiveInteger32
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for PositiveInteger32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger32>
fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger32>
Source§impl TryFrom<NonZeroInteger16> for PositiveInteger64
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for PositiveInteger64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger64>
fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger64>
Source§impl TryFrom<NonZeroInteger16> for PositiveInteger8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for PositiveInteger8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<PositiveInteger8>
Source§impl TryFrom<NonZeroInteger16> for Rational8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for Rational8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<Rational8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<Rational8>
Source§impl TryFrom<NonZeroInteger16> for i8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for i8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<i8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<i8>
Source§impl TryFrom<NonZeroInteger16> for u128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for u128
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<u128>
fn try_from(f: NonZeroInteger16) -> NumeraResult<u128>
Source§impl TryFrom<NonZeroInteger16> for u16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for u16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<u16>
fn try_from(f: NonZeroInteger16) -> NumeraResult<u16>
Source§impl TryFrom<NonZeroInteger16> for u32
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for u32
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<u32>
fn try_from(f: NonZeroInteger16) -> NumeraResult<u32>
Source§impl TryFrom<NonZeroInteger16> for u64
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for u64
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<u64>
fn try_from(f: NonZeroInteger16) -> NumeraResult<u64>
Source§impl TryFrom<NonZeroInteger16> for u8
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for u8
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger16) -> NumeraResult<u8>
fn try_from(f: NonZeroInteger16) -> NumeraResult<u8>
Source§impl TryFrom<NonZeroInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZeroInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: NonZeroInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: NonZeroInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<NonZeroIntegers> for NonZeroInteger16
impl TryFrom<NonZeroIntegers> for NonZeroInteger16
Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(z: NonZeroIntegers) -> Result<NonZeroInteger16, Self::Error>
fn try_from(z: NonZeroIntegers) -> Result<NonZeroInteger16, Self::Error>
Source§impl TryFrom<PositiveInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<PositiveInteger128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: PositiveInteger128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: PositiveInteger128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<PositiveInteger16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<PositiveInteger16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: PositiveInteger16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: PositiveInteger16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<PositiveInteger32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<PositiveInteger32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: PositiveInteger32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: PositiveInteger32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<PositiveInteger64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<PositiveInteger64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: PositiveInteger64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: PositiveInteger64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Prime128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Prime128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Prime128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Prime128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Prime16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Prime16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Prime16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Prime16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Prime32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Prime32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Prime32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Prime32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<Prime64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<Prime64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: Prime64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: Prime64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<i128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<i128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: i128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: i128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<i16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<i16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: i16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: i16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<i32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<i32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: i32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: i32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<i64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<i64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: i64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: i64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<i8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<i8> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: i8) -> NumeraResult<NonZeroInteger16>
fn try_from(f: i8) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<u128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<u128> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: u128) -> NumeraResult<NonZeroInteger16>
fn try_from(f: u128) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<u16> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<u16> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: u16) -> NumeraResult<NonZeroInteger16>
fn try_from(f: u16) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<u32> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<u32> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: u32) -> NumeraResult<NonZeroInteger16>
fn try_from(f: u32) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<u64> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<u64> for NonZeroInteger16
try_from only.Source§type Error = NumeraErrors
type Error = NumeraErrors
Source§fn try_from(f: u64) -> NumeraResult<NonZeroInteger16>
fn try_from(f: u64) -> NumeraResult<NonZeroInteger16>
Source§impl TryFrom<u8> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<u8> for NonZeroInteger16
try_from only.