pub struct NegativeInteger128(pub NonZeroU128);numera only.Expand description
A 128-bit negative integer number, from the set $\Z^-$,
also known as Nz128.
The range of valid numeric values is $\lbrack$$-$NonZeroU128::MAX $\dots-1\rbrack$.
Tuple Fields§
§0: NonZeroU128Implementations§
source§impl NegativeInteger128
impl NegativeInteger128
sourcepub const fn is_multiple_of(&self, other: &NegativeInteger128) -> bool
pub const fn is_multiple_of(&self, other: &NegativeInteger128) -> bool
Returns true if this integer is a multiple of the other.
sourcepub const fn is_divisor_of(&self, other: &NegativeInteger128) -> bool
pub const fn is_divisor_of(&self, other: &NegativeInteger128) -> bool
Returns true if this integer is a divisor of the other.
impl NegativeInteger128
source§impl NegativeInteger128
impl NegativeInteger128
sourcepub const fn new_neg(value: u128) -> Result<NegativeInteger128, NumeraError>
pub const fn new_neg(value: u128) -> Result<NegativeInteger128, NumeraError>
Returns a new NegativeInteger128.
Please note that the given value will be interpreted as negative.
Errors
If the given value is 0.
source§impl NegativeInteger128
impl NegativeInteger128
sourcepub fn as_larger_or_same(&self) -> NegativeInteger128
pub fn as_larger_or_same(&self) -> NegativeInteger128
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) -> Result<NegativeInteger128, NumeraError>
pub fn try_as_larger(&self) -> Result<NegativeInteger128, NumeraError>
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) -> NegativeInteger
Available on crate feature try_from only.
pub fn as_smaller_or_same(&self) -> NegativeInteger
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) -> Result<NegativeInteger64, NumeraError>
Available on crate feature try_from only.
pub fn try_as_smaller(&self) -> Result<NegativeInteger64, NumeraError>
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<NegativeInteger128> for NegativeInteger128
impl Add<NegativeInteger128> for NegativeInteger128
§type Output = NegativeInteger128
type Output = NegativeInteger128
+ operator.source§fn add(
self,
rhs: <NegativeInteger128 as Add<NegativeInteger128>>::Output
) -> <NegativeInteger128 as Add<NegativeInteger128>>::Output
fn add( self, rhs: <NegativeInteger128 as Add<NegativeInteger128>>::Output ) -> <NegativeInteger128 as Add<NegativeInteger128>>::Output
+ operation. Read moresource§impl Bound for NegativeInteger128
impl Bound for NegativeInteger128
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<NegativeInteger128>
fn lower_bound(&self) -> Option<NegativeInteger128>
source§fn upper_bound(&self) -> Option<NegativeInteger128>
fn upper_bound(&self) -> Option<NegativeInteger128>
source§impl Clone for NegativeInteger128
impl Clone for NegativeInteger128
source§fn clone(&self) -> NegativeInteger128
fn clone(&self) -> NegativeInteger128
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl ConstLowerBounded for NegativeInteger128
impl ConstLowerBounded for NegativeInteger128
source§const MIN: NegativeInteger128 = Self(NonZeroU128::MAX)
const MIN: NegativeInteger128 = Self(NonZeroU128::MAX)
source§impl ConstNegOne for NegativeInteger128
impl ConstNegOne for NegativeInteger128
source§const NEG_ONE: NegativeInteger128 = Self(unsafe { NonZeroU128::new_unchecked(1) })
const NEG_ONE: NegativeInteger128 = Self(unsafe { NonZeroU128::new_unchecked(1) })
-1.source§impl ConstUpperBounded for NegativeInteger128
impl ConstUpperBounded for NegativeInteger128
source§const MAX: NegativeInteger128 = Self(NonZeroU128::MIN)
const MAX: NegativeInteger128 = Self(NonZeroU128::MIN)
source§impl Count for NegativeInteger128
impl Count for NegativeInteger128
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 NegativeInteger128
impl Countable for NegativeInteger128
source§fn next(&self) -> Result<NegativeInteger128, NumeraError>
fn next(&self) -> Result<NegativeInteger128, NumeraError>
source§fn previous(&self) -> Result<NegativeInteger128, NumeraError>
fn previous(&self) -> Result<NegativeInteger128, NumeraError>
Returns the previous countable value, skipping 0.
Errors
Errors if the operation results in underflow.
source§impl Debug for NegativeInteger128
impl Debug for NegativeInteger128
source§impl Display for NegativeInteger128
impl Display for NegativeInteger128
source§impl From<&NegativeInteger128> for IntegerBig
impl From<&NegativeInteger128> for IntegerBig
source§fn from(f: &NegativeInteger128) -> IntegerBig
fn from(f: &NegativeInteger128) -> IntegerBig
source§impl From<&NegativeInteger128> for NonPositiveInteger128
impl From<&NegativeInteger128> for NonPositiveInteger128
source§fn from(f: &NegativeInteger128) -> NonPositiveInteger128
fn from(f: &NegativeInteger128) -> NonPositiveInteger128
source§impl From<&NegativeInteger16> for NegativeInteger128
impl From<&NegativeInteger16> for NegativeInteger128
source§fn from(f: &NegativeInteger16) -> NegativeInteger128
fn from(f: &NegativeInteger16) -> NegativeInteger128
source§impl From<&NegativeInteger32> for NegativeInteger128
impl From<&NegativeInteger32> for NegativeInteger128
source§fn from(f: &NegativeInteger32) -> NegativeInteger128
fn from(f: &NegativeInteger32) -> NegativeInteger128
source§impl From<&NegativeInteger64> for NegativeInteger128
impl From<&NegativeInteger64> for NegativeInteger128
source§fn from(f: &NegativeInteger64) -> NegativeInteger128
fn from(f: &NegativeInteger64) -> NegativeInteger128
source§impl From<&NegativeInteger8> for NegativeInteger128
impl From<&NegativeInteger8> for NegativeInteger128
source§fn from(f: &NegativeInteger8) -> NegativeInteger128
fn from(f: &NegativeInteger8) -> NegativeInteger128
source§impl From<&mut NegativeInteger128> for IntegerBig
impl From<&mut NegativeInteger128> for IntegerBig
source§fn from(f: &mut NegativeInteger128) -> IntegerBig
fn from(f: &mut NegativeInteger128) -> IntegerBig
source§impl From<&mut NegativeInteger128> for NonPositiveInteger128
impl From<&mut NegativeInteger128> for NonPositiveInteger128
source§fn from(f: &mut NegativeInteger128) -> NonPositiveInteger128
fn from(f: &mut NegativeInteger128) -> NonPositiveInteger128
source§impl From<&mut NegativeInteger16> for NegativeInteger128
impl From<&mut NegativeInteger16> for NegativeInteger128
source§fn from(f: &mut NegativeInteger16) -> NegativeInteger128
fn from(f: &mut NegativeInteger16) -> NegativeInteger128
source§impl From<&mut NegativeInteger32> for NegativeInteger128
impl From<&mut NegativeInteger32> for NegativeInteger128
source§fn from(f: &mut NegativeInteger32) -> NegativeInteger128
fn from(f: &mut NegativeInteger32) -> NegativeInteger128
source§impl From<&mut NegativeInteger64> for NegativeInteger128
impl From<&mut NegativeInteger64> for NegativeInteger128
source§fn from(f: &mut NegativeInteger64) -> NegativeInteger128
fn from(f: &mut NegativeInteger64) -> NegativeInteger128
source§impl From<&mut NegativeInteger8> for NegativeInteger128
impl From<&mut NegativeInteger8> for NegativeInteger128
source§fn from(f: &mut NegativeInteger8) -> NegativeInteger128
fn from(f: &mut NegativeInteger8) -> NegativeInteger128
source§impl From<NegativeInteger128> for IntegerBig
impl From<NegativeInteger128> for IntegerBig
source§fn from(f: NegativeInteger128) -> IntegerBig
fn from(f: NegativeInteger128) -> IntegerBig
source§impl From<NegativeInteger128> for NegativeInteger
impl From<NegativeInteger128> for NegativeInteger
source§fn from(z: NegativeInteger128) -> NegativeInteger
fn from(z: NegativeInteger128) -> NegativeInteger
source§impl From<NegativeInteger128> for NonPositiveInteger128
impl From<NegativeInteger128> for NonPositiveInteger128
source§fn from(f: NegativeInteger128) -> NonPositiveInteger128
fn from(f: NegativeInteger128) -> NonPositiveInteger128
source§impl From<NegativeInteger16> for NegativeInteger128
impl From<NegativeInteger16> for NegativeInteger128
source§fn from(f: NegativeInteger16) -> NegativeInteger128
fn from(f: NegativeInteger16) -> NegativeInteger128
source§impl From<NegativeInteger32> for NegativeInteger128
impl From<NegativeInteger32> for NegativeInteger128
source§fn from(f: NegativeInteger32) -> NegativeInteger128
fn from(f: NegativeInteger32) -> NegativeInteger128
source§impl From<NegativeInteger64> for NegativeInteger128
impl From<NegativeInteger64> for NegativeInteger128
source§fn from(f: NegativeInteger64) -> NegativeInteger128
fn from(f: NegativeInteger64) -> NegativeInteger128
source§impl From<NegativeInteger8> for NegativeInteger128
impl From<NegativeInteger8> for NegativeInteger128
source§fn from(f: NegativeInteger8) -> NegativeInteger128
fn from(f: NegativeInteger8) -> NegativeInteger128
source§impl Hash for NegativeInteger128
impl Hash for NegativeInteger128
source§impl Ident for NegativeInteger128
impl Ident for NegativeInteger128
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 Integers for NegativeInteger128
impl Integers for NegativeInteger128
source§fn integer_is_prime(&self) -> Option<bool>
fn integer_is_prime(&self) -> Option<bool>
Returns always None, since negative numbers can’t be prime.
source§fn integer_gcd(&self, _other: &NegativeInteger128) -> Option<NegativeInteger128>
fn integer_gcd(&self, _other: &NegativeInteger128) -> Option<NegativeInteger128>
Returns always None, since the result must be a positive number.
source§fn integer_lcm(&self, _other: &NegativeInteger128) -> Option<NegativeInteger128>
fn integer_lcm(&self, _other: &NegativeInteger128) -> Option<NegativeInteger128>
Returns always None, since the result must be a non-negative number.
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: &NegativeInteger128) -> bool
fn integer_is_multiple_of(&self, other: &NegativeInteger128) -> bool
true if this integer is a multiple of the other.source§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 NegativeInteger128
impl LowerBounded for NegativeInteger128
source§fn new_min() -> NegativeInteger128
fn new_min() -> NegativeInteger128
source§impl NegOne for NegativeInteger128
impl NegOne for NegativeInteger128
source§fn new_neg_one() -> NegativeInteger128
fn new_neg_one() -> NegativeInteger128
-1.source§fn set_neg_one(&mut self)where
Self: Sized,
fn set_neg_one(&mut self)where Self: Sized,
-1.source§impl NonPositive for NegativeInteger128
impl NonPositive for NegativeInteger128
source§fn new_neg(
value: <NegativeInteger128 as NonPositive>::InnerRepr
) -> Result<NegativeInteger128, NumeraError>
fn new_neg( value: <NegativeInteger128 as NonPositive>::InnerRepr ) -> Result<NegativeInteger128, NumeraError>
value. Read moresource§impl Numbers for NegativeInteger128
impl Numbers for NegativeInteger128
source§fn from_inner_repr(
value: <NegativeInteger128 as Numbers>::InnerRepr
) -> Result<NegativeInteger128, NumeraError>
fn from_inner_repr( value: <NegativeInteger128 as Numbers>::InnerRepr ) -> Result<NegativeInteger128, NumeraError>
Returns a new NegativeInteger128 from the inner representation.
Please note that the given value will be interpreted as negative.
Errors
This function can’t fail.
source§unsafe fn from_inner_repr_unchecked(
value: <NegativeInteger128 as Numbers>::InnerRepr
) -> NegativeInteger128
Available on crate feature not(safe) only.
unsafe fn from_inner_repr_unchecked( value: <NegativeInteger128 as Numbers>::InnerRepr ) -> NegativeInteger128
not(safe) only.Returns a new NegativeInteger128 from the inner representation.
Please note that the given value will interpreted as negative.
Safety
This function is safe.
source§fn from_innermost_repr(
value: <NegativeInteger128 as Numbers>::InnermostRepr
) -> Result<NegativeInteger128, NumeraError>
fn from_innermost_repr( value: <NegativeInteger128 as Numbers>::InnermostRepr ) -> Result<NegativeInteger128, NumeraError>
source§unsafe fn from_innermost_repr_unchecked(
value: <NegativeInteger128 as Numbers>::InnermostRepr
) -> NegativeInteger128
Available on crate feature not(safe) only.
unsafe fn from_innermost_repr_unchecked( value: <NegativeInteger128 as Numbers>::InnermostRepr ) -> NegativeInteger128
not(safe) only.§type InnerRepr = NonZeroU128
type InnerRepr = NonZeroU128
§type InnermostRepr = u128
type InnermostRepr = u128
source§fn into_inner_repr(self) -> <NegativeInteger128 as Numbers>::InnerRepr
fn into_inner_repr(self) -> <NegativeInteger128 as Numbers>::InnerRepr
source§fn into_innermost_repr(self) -> <NegativeInteger128 as Numbers>::InnermostRepr
fn into_innermost_repr(self) -> <NegativeInteger128 as Numbers>::InnermostRepr
source§fn try_from_inner_repr(
inner: impl Into<Self::InnerRepr>
) -> Result<Self, NumeraError>where
Self: Sized,
fn try_from_inner_repr( inner: impl Into<Self::InnerRepr> ) -> Result<Self, NumeraError>where Self: Sized,
inner representation. Read moresource§impl Ord for NegativeInteger128
impl Ord for NegativeInteger128
source§fn cmp(&self, other: &NegativeInteger128) -> Ordering
fn cmp(&self, other: &NegativeInteger128) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<NegativeInteger128> for NegativeInteger128
impl PartialEq<NegativeInteger128> for NegativeInteger128
source§fn eq(&self, other: &NegativeInteger128) -> bool
fn eq(&self, other: &NegativeInteger128) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialOrd<NegativeInteger128> for NegativeInteger128
impl PartialOrd<NegativeInteger128> for NegativeInteger128
source§fn partial_cmp(&self, other: &NegativeInteger128) -> Option<Ordering>
fn partial_cmp(&self, other: &NegativeInteger128) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moresource§impl Rem<NegativeInteger128> for NegativeInteger128
impl Rem<NegativeInteger128> for NegativeInteger128
§type Output = NegativeInteger128
type Output = NegativeInteger128
% operator.source§fn rem(
self,
rhs: <NegativeInteger128 as Rem<NegativeInteger128>>::Output
) -> <NegativeInteger128 as Rem<NegativeInteger128>>::Output
fn rem( self, rhs: <NegativeInteger128 as Rem<NegativeInteger128>>::Output ) -> <NegativeInteger128 as Rem<NegativeInteger128>>::Output
% operation. Read moresource§impl Sign for NegativeInteger128
impl Sign for NegativeInteger128
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<NegativeInteger128> for NegativeInteger128
impl Sub<NegativeInteger128> for NegativeInteger128
§type Output = NegativeInteger128
type Output = NegativeInteger128
- operator.source§fn sub(
self,
rhs: <NegativeInteger128 as Sub<NegativeInteger128>>::Output
) -> <NegativeInteger128 as Sub<NegativeInteger128>>::Output
fn sub( self, rhs: <NegativeInteger128 as Sub<NegativeInteger128>>::Output ) -> <NegativeInteger128 as Sub<NegativeInteger128>>::Output
- operation. Read moresource§impl TryFrom<&Integer128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Integer128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &Integer128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &Integer128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Integer16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Integer16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &Integer16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &Integer16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Integer32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Integer32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &Integer32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &Integer32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Integer64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Integer64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &Integer64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &Integer64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Integer8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Integer8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &Integer8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &Integer8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Integer128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Integer128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Integer128, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Integer128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Integer16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Integer16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Integer16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Integer16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Integer32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Integer32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Integer32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Integer32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Integer64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Integer64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Integer64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Integer64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Integer8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Integer8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Integer8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Integer8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NegativeInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NegativeInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NegativeInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NegativeInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NegativeInteger8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonNegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonNegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NegativeInteger128
) -> Result<NonNegativeInteger128, NumeraError>
fn try_from( _f: &NegativeInteger128 ) -> Result<NonNegativeInteger128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonNegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonNegativeInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NegativeInteger128
) -> Result<NonNegativeInteger16, NumeraError>
fn try_from( _f: &NegativeInteger128 ) -> Result<NonNegativeInteger16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonNegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonNegativeInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NegativeInteger128
) -> Result<NonNegativeInteger32, NumeraError>
fn try_from( _f: &NegativeInteger128 ) -> Result<NonNegativeInteger32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonNegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonNegativeInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NegativeInteger128
) -> Result<NonNegativeInteger64, NumeraError>
fn try_from( _f: &NegativeInteger128 ) -> Result<NonNegativeInteger64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonNegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonNegativeInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<NonNegativeInteger8, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<NonNegativeInteger8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonPositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonPositiveInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonPositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonPositiveInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonPositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonPositiveInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonPositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonPositiveInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonPositiveInteger8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroI128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroI128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroI128, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroI128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroI16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroI16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroI16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroI16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroI32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroI32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroI32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroI32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroI64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroI64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroI64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroI64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroI8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroI8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroI8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroI8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroInteger128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger128, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroInteger32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroInteger64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroInteger8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<NonZeroInteger8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroU128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroU128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU128, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroU16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroU16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU16, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroU32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroU32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU32, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroU64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroU64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU64, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for NonZeroU8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for NonZeroU8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU8, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<NonZeroU8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for PositiveInteger128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for PositiveInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger128, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for PositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for PositiveInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger16, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for PositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for PositiveInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger32, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for PositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for PositiveInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger64, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for PositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for PositiveInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger8, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<PositiveInteger8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Rational128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Rational128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Rational128, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Rational128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Rational16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Rational16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Rational16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Rational16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Rational32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Rational32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Rational32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Rational32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Rational64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Rational64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Rational64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Rational64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for Rational8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for Rational8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<Rational8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<Rational8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for i128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for i128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<i128, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<i128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for i16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for i16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<i16, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<i16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for i32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for i32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<i32, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<i32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for i64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for i64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<i64, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<i64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for i8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for i8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NegativeInteger128) -> Result<i8, NumeraError>
fn try_from(f: &NegativeInteger128) -> Result<i8, NumeraError>
source§impl TryFrom<&NegativeInteger128> for u128
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for u128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<u128, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<u128, NumeraError>
source§impl TryFrom<&NegativeInteger128> for u16
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for u16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<u16, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<u16, NumeraError>
source§impl TryFrom<&NegativeInteger128> for u32
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for u32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<u32, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<u32, NumeraError>
source§impl TryFrom<&NegativeInteger128> for u64
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for u64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<u64, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<u64, NumeraError>
source§impl TryFrom<&NegativeInteger128> for u8
Available on crate feature try_from only.
impl TryFrom<&NegativeInteger128> for u8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NegativeInteger128) -> Result<u8, NumeraError>
fn try_from(_f: &NegativeInteger128) -> Result<u8, NumeraError>
source§impl TryFrom<&NonNegativeInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NonNegativeInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &NonNegativeInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonNegativeInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NonNegativeInteger16
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &NonNegativeInteger16 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonNegativeInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NonNegativeInteger32
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &NonNegativeInteger32 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonNegativeInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &NonNegativeInteger64
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &NonNegativeInteger64 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonNegativeInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonNegativeInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NonNegativeInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &NonNegativeInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonPositiveInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &NonPositiveInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &NonPositiveInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonPositiveInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonPositiveInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonPositiveInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonPositiveInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonPositiveInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonPositiveInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonPositiveInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonPositiveInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonPositiveInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonPositiveInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonPositiveInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonPositiveInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonPositiveInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroI128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroI128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroI128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroI128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroI16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroI16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroI16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroI16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroI32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroI32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroI32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroI32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroI64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroI64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroI64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroI64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroI8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroI8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroI8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroI8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroInteger128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroInteger128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &NonZeroInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &NonZeroInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroU128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroU128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NonZeroU128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &NonZeroU128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroU16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroU16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NonZeroU16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &NonZeroU16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroU32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroU32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NonZeroU32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &NonZeroU32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroU64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroU64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NonZeroU64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &NonZeroU64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&NonZeroU8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&NonZeroU8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &NonZeroU8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &NonZeroU8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&PositiveInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &PositiveInteger128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &PositiveInteger128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&PositiveInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &PositiveInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &PositiveInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&PositiveInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &PositiveInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &PositiveInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&PositiveInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &PositiveInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &PositiveInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&PositiveInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&PositiveInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &PositiveInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &PositiveInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Prime128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Prime128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &Prime128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &Prime128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Prime16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Prime16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &Prime16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &Prime16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Prime32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Prime32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &Prime32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &Prime32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Prime64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Prime64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &Prime64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &Prime64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&Prime8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&Prime8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &Prime8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &Prime8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&i128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&i128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &i128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &i128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&i16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&i16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &i16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &i16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&i32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&i32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &i32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &i32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&i64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&i64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &i64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &i64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&i8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&i8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &i8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &i8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Integer128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Integer128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut Integer128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut Integer128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Integer16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Integer16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut Integer16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut Integer16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Integer32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Integer32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut Integer32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut Integer32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Integer64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Integer64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut Integer64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut Integer64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Integer8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Integer8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut Integer8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut Integer8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Integer128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Integer128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Integer128, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Integer128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Integer16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Integer16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Integer16, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Integer16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Integer32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Integer32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Integer32, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Integer32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Integer64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Integer64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Integer64, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Integer64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Integer8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Integer8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Integer8, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Integer8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NegativeInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NegativeInteger16, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NegativeInteger16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NegativeInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NegativeInteger32, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NegativeInteger32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NegativeInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NegativeInteger64, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NegativeInteger64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NegativeInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NegativeInteger8, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NegativeInteger8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<NonNegativeInteger128, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<NonNegativeInteger128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<NonNegativeInteger16, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<NonNegativeInteger16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<NonNegativeInteger32, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<NonNegativeInteger32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<NonNegativeInteger64, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<NonNegativeInteger64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonNegativeInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<NonNegativeInteger8, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<NonNegativeInteger8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NonPositiveInteger16, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NonPositiveInteger16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NonPositiveInteger32, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NonPositiveInteger32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NonPositiveInteger64, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NonPositiveInteger64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonPositiveInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NonPositiveInteger8, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NonPositiveInteger8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroI128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroI128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI128, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroI16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroI16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI16, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroI32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroI32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI32, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroI64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroI64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI64, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroI8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroI8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI8, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroI8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NegativeInteger128
) -> Result<NonZeroInteger128, NumeraError>
fn try_from( f: &mut NegativeInteger128 ) -> Result<NonZeroInteger128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger16, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger32, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger64, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger8, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<NonZeroInteger8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroU128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroU128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU128, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroU16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroU16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU16, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroU32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroU32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU32, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroU64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroU64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU64, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for NonZeroU8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for NonZeroU8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU8, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<NonZeroU8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for PositiveInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for PositiveInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<PositiveInteger128, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<PositiveInteger128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for PositiveInteger16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for PositiveInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<PositiveInteger16, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<PositiveInteger16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for PositiveInteger32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for PositiveInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<PositiveInteger32, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<PositiveInteger32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for PositiveInteger64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for PositiveInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<PositiveInteger64, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<PositiveInteger64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for PositiveInteger8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for PositiveInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NegativeInteger128
) -> Result<PositiveInteger8, NumeraError>
fn try_from( _f: &mut NegativeInteger128 ) -> Result<PositiveInteger8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Rational128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Rational128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Rational128, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Rational128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Rational16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Rational16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Rational16, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Rational16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Rational32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Rational32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Rational32, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Rational32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Rational64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Rational64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Rational64, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Rational64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for Rational8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for Rational8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<Rational8, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<Rational8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for i128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for i128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<i128, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<i128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for i16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for i16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<i16, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<i16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for i32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for i32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<i32, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<i32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for i64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for i64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<i64, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<i64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for i8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for i8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NegativeInteger128) -> Result<i8, NumeraError>
fn try_from(f: &mut NegativeInteger128) -> Result<i8, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for u128
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for u128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<u128, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<u128, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for u16
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for u16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<u16, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<u16, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for u32
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for u32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<u32, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<u32, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for u64
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for u64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<u64, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<u64, NumeraError>
source§impl TryFrom<&mut NegativeInteger128> for u8
Available on crate feature try_from only.
impl TryFrom<&mut NegativeInteger128> for u8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NegativeInteger128) -> Result<u8, NumeraError>
fn try_from(_f: &mut NegativeInteger128) -> Result<u8, NumeraError>
source§impl TryFrom<&mut NonNegativeInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NonNegativeInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut NonNegativeInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonNegativeInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NonNegativeInteger16
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut NonNegativeInteger16 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonNegativeInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NonNegativeInteger32
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut NonNegativeInteger32 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonNegativeInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NonNegativeInteger64
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut NonNegativeInteger64 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonNegativeInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonNegativeInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut NonNegativeInteger8
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut NonNegativeInteger8 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonPositiveInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NonPositiveInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &mut NonPositiveInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonPositiveInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NonPositiveInteger16
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &mut NonPositiveInteger16 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonPositiveInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NonPositiveInteger32
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &mut NonPositiveInteger32 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonPositiveInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NonPositiveInteger64
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &mut NonPositiveInteger64 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonPositiveInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonPositiveInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NonPositiveInteger8
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &mut NonPositiveInteger8 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroI128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroI128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroI128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroI128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroI16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroI16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroI16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroI16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroI32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroI32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroI32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroI32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroI64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroI64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroI64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroI64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroI8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroI8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroI8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroI8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
f: &mut NonZeroInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( f: &mut NonZeroInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut NonZeroInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut NonZeroInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroU128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroU128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NonZeroU128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut NonZeroU128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroU16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroU16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NonZeroU16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut NonZeroU16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroU32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroU32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NonZeroU32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut NonZeroU32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroU64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroU64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NonZeroU64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut NonZeroU64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut NonZeroU8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut NonZeroU8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut NonZeroU8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut NonZeroU8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut PositiveInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut PositiveInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut PositiveInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut PositiveInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut PositiveInteger16
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut PositiveInteger16 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut PositiveInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut PositiveInteger32
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut PositiveInteger32 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut PositiveInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut PositiveInteger64
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut PositiveInteger64 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut PositiveInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut PositiveInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: &mut PositiveInteger8
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: &mut PositiveInteger8 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Prime128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Prime128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut Prime128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut Prime128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Prime16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Prime16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut Prime16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut Prime16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Prime32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Prime32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut Prime32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut Prime32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Prime64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Prime64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut Prime64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut Prime64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut Prime8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut Prime8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut Prime8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut Prime8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut i128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut i128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut i128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut i128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut i16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut i16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut i16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut i16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut i32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut i32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut i32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut i32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut i64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut i64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut i64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut i64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut i8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut i8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: &mut i8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: &mut i8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut u128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut u128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut u128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut u128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut u16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut u16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut u16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut u16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut u32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut u32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut u32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut u32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut u64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut u64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut u64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut u64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&mut u8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&mut u8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &mut u8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &mut u8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&u128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&u128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &u128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &u128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&u16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&u16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &u16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &u16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&u32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&u32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &u32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &u32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&u64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&u64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &u64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &u64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<&u8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<&u8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: &u8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: &u8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Integer128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Integer128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: Integer128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: Integer128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Integer16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Integer16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: Integer16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: Integer16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Integer32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Integer32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: Integer32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: Integer32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Integer64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Integer64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: Integer64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: Integer64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Integer8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Integer8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: Integer8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: Integer8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NegativeInteger> for NegativeInteger128
impl TryFrom<NegativeInteger> for NegativeInteger128
§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
z: NegativeInteger
) -> Result<NegativeInteger128, <NegativeInteger128 as TryFrom<NegativeInteger>>::Error>
fn try_from( z: NegativeInteger ) -> Result<NegativeInteger128, <NegativeInteger128 as TryFrom<NegativeInteger>>::Error>
source§impl TryFrom<NegativeInteger128> for Integer128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Integer128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Integer128, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Integer128, NumeraError>
source§impl TryFrom<NegativeInteger128> for Integer16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Integer16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Integer16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Integer16, NumeraError>
source§impl TryFrom<NegativeInteger128> for Integer32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Integer32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Integer32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Integer32, NumeraError>
source§impl TryFrom<NegativeInteger128> for Integer64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Integer64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Integer64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Integer64, NumeraError>
source§impl TryFrom<NegativeInteger128> for Integer8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Integer8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Integer8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Integer8, NumeraError>
source§impl TryFrom<NegativeInteger128> for NegativeInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NegativeInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NegativeInteger16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NegativeInteger16, NumeraError>
source§impl TryFrom<NegativeInteger128> for NegativeInteger32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NegativeInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NegativeInteger32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NegativeInteger32, NumeraError>
source§impl TryFrom<NegativeInteger128> for NegativeInteger64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NegativeInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NegativeInteger64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NegativeInteger64, NumeraError>
source§impl TryFrom<NegativeInteger128> for NegativeInteger8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NegativeInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NegativeInteger8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NegativeInteger8, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonNegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonNegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: NegativeInteger128
) -> Result<NonNegativeInteger128, NumeraError>
fn try_from( _f: NegativeInteger128 ) -> Result<NonNegativeInteger128, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonNegativeInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonNegativeInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger16, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger16, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonNegativeInteger32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonNegativeInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger32, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger32, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonNegativeInteger64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonNegativeInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger64, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger64, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonNegativeInteger8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonNegativeInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger8, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonNegativeInteger8, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonPositiveInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonPositiveInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger16, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonPositiveInteger32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonPositiveInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger32, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonPositiveInteger64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonPositiveInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger64, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonPositiveInteger8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonPositiveInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonPositiveInteger8, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroI128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroI128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroI128, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroI128, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroI16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroI16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroI16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroI16, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroI32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroI32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroI32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroI32, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroI64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroI64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroI64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroI64, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroI8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroI8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroI8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroI8, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroInteger128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger128, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger128, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger16, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroInteger32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger32, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroInteger64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger64, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroInteger8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<NonZeroInteger8, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroU128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroU128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonZeroU128, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonZeroU128, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroU16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroU16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonZeroU16, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonZeroU16, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroU32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroU32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonZeroU32, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonZeroU32, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroU64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroU64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonZeroU64, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonZeroU64, NumeraError>
source§impl TryFrom<NegativeInteger128> for NonZeroU8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for NonZeroU8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<NonZeroU8, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<NonZeroU8, NumeraError>
source§impl TryFrom<NegativeInteger128> for PositiveInteger128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for PositiveInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger128, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger128, NumeraError>
source§impl TryFrom<NegativeInteger128> for PositiveInteger16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for PositiveInteger16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger16, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger16, NumeraError>
source§impl TryFrom<NegativeInteger128> for PositiveInteger32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for PositiveInteger32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger32, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger32, NumeraError>
source§impl TryFrom<NegativeInteger128> for PositiveInteger64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for PositiveInteger64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger64, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger64, NumeraError>
source§impl TryFrom<NegativeInteger128> for PositiveInteger8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for PositiveInteger8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger8, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<PositiveInteger8, NumeraError>
source§impl TryFrom<NegativeInteger128> for Rational128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Rational128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Rational128, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Rational128, NumeraError>
source§impl TryFrom<NegativeInteger128> for Rational16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Rational16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Rational16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Rational16, NumeraError>
source§impl TryFrom<NegativeInteger128> for Rational32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Rational32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Rational32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Rational32, NumeraError>
source§impl TryFrom<NegativeInteger128> for Rational64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Rational64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Rational64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Rational64, NumeraError>
source§impl TryFrom<NegativeInteger128> for Rational8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for Rational8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<Rational8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<Rational8, NumeraError>
source§impl TryFrom<NegativeInteger128> for i128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for i128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<i128, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<i128, NumeraError>
source§impl TryFrom<NegativeInteger128> for i16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for i16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<i16, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<i16, NumeraError>
source§impl TryFrom<NegativeInteger128> for i32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for i32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<i32, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<i32, NumeraError>
source§impl TryFrom<NegativeInteger128> for i64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for i64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<i64, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<i64, NumeraError>
source§impl TryFrom<NegativeInteger128> for i8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for i8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NegativeInteger128) -> Result<i8, NumeraError>
fn try_from(f: NegativeInteger128) -> Result<i8, NumeraError>
source§impl TryFrom<NegativeInteger128> for u128
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for u128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<u128, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<u128, NumeraError>
source§impl TryFrom<NegativeInteger128> for u16
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for u16
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<u16, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<u16, NumeraError>
source§impl TryFrom<NegativeInteger128> for u32
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for u32
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<u32, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<u32, NumeraError>
source§impl TryFrom<NegativeInteger128> for u64
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for u64
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<u64, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<u64, NumeraError>
source§impl TryFrom<NegativeInteger128> for u8
Available on crate feature try_from only.
impl TryFrom<NegativeInteger128> for u8
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NegativeInteger128) -> Result<u8, NumeraError>
fn try_from(_f: NegativeInteger128) -> Result<u8, NumeraError>
source§impl TryFrom<NonNegativeInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(
_f: NonNegativeInteger128
) -> Result<NegativeInteger128, NumeraError>
fn try_from( _f: NonNegativeInteger128 ) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonNegativeInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonNegativeInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonNegativeInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonNegativeInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonNegativeInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonNegativeInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonNegativeInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonNegativeInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonNegativeInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonNegativeInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonNegativeInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonNegativeInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonNegativeInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonPositiveInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonPositiveInteger128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonPositiveInteger128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonPositiveInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonPositiveInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonPositiveInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonPositiveInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonPositiveInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonPositiveInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonPositiveInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonPositiveInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonPositiveInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonPositiveInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonPositiveInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonPositiveInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonPositiveInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroI128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroI128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroI128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroI128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroI16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroI16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroI16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroI16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroI32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroI32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroI32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroI32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroI64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroI64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroI64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroI64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroI8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroI8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroI8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroI8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroInteger128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroInteger128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: NonZeroInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: NonZeroInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroU128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroU128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonZeroU128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonZeroU128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroU16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroU16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonZeroU16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonZeroU16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroU32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroU32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonZeroU32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonZeroU32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroU64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroU64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonZeroU64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonZeroU64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<NonZeroU8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<NonZeroU8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: NonZeroU8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: NonZeroU8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<PositiveInteger128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<PositiveInteger128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: PositiveInteger128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: PositiveInteger128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<PositiveInteger16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<PositiveInteger16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: PositiveInteger16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: PositiveInteger16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<PositiveInteger32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<PositiveInteger32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: PositiveInteger32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: PositiveInteger32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<PositiveInteger64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<PositiveInteger64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: PositiveInteger64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: PositiveInteger64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<PositiveInteger8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<PositiveInteger8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: PositiveInteger8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: PositiveInteger8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Prime128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Prime128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: Prime128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: Prime128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Prime16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Prime16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: Prime16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: Prime16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Prime32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Prime32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: Prime32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: Prime32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Prime64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Prime64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: Prime64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: Prime64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<Prime8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<Prime8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: Prime8) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: Prime8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<i128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<i128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: i128) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: i128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<i16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<i16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: i16) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: i16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<i32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<i32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: i32) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: i32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<i64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<i64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: i64) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: i64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<i8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<i8> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(f: i8) -> Result<NegativeInteger128, NumeraError>
fn try_from(f: i8) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<u128> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<u128> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: u128) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: u128) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<u16> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<u16> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: u16) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: u16) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<u32> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<u32> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: u32) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: u32) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<u64> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<u64> for NegativeInteger128
try_from only.§type Error = NumeraError
type Error = NumeraError
source§fn try_from(_f: u64) -> Result<NegativeInteger128, NumeraError>
fn try_from(_f: u64) -> Result<NegativeInteger128, NumeraError>
source§impl TryFrom<u8> for NegativeInteger128
Available on crate feature try_from only.
impl TryFrom<u8> for NegativeInteger128
try_from only.