Struct ux2::u101

source ·
pub struct u101(_);
Expand description

The 101-bit unsigned integer type.

Implementations§

source§

impl u101

source

pub const MIN: u101 = _

The smallest value that can be represented by this integer type.

Examples

Basic usage:

assert_eq!(u101::MIN, u101::try_from(0u128).unwrap());
source

pub const MAX: u101 = _

The largest value that can be represented by this integer type.

Examples

Basic usage:

assert_eq!(u101::MAX, u101::try_from(2535301200456458802993406410751u128).unwrap());
source

pub const BITS: u32 = 101u32

The size of this integer type in bits.

Examples
assert_eq!(u101::BITS, 101);
source

pub fn from_be_bytes(bytes: [u8; 13]) -> Self

Create a native endian integer value from its representation as a byte array in big endian.

source

pub fn from_le_bytes(bytes: [u8; 13]) -> Self

Create a native endian integer value from its representation as a byte array in little endian.

source

pub fn from_ne_bytes(bytes: [u8; 13]) -> Self

Create a native endian integer value from its memory representation as a byte array in native endianness.

As the target platform’s native endianness is used, portable code likely wants to use from_be_bytes or from_le_bytes, as appropriate instead.

source

pub fn to_be_bytes(self) -> [u8; 13]

Return the memory representation of this integer as a byte array in big-endian (network) byte order.

source

pub fn to_le_bytes(self) -> [u8; 13]

Return the memory representation of this integer as a byte array in little-endian byte order.

source

pub fn to_ne_bytes(self) -> [u8; 13]

Return the memory representation of this integer as a byte array in native byte order.

As the target platform’s native endianness is used, portable code should use to_be_bytes or to_le_bytes, as appropriate, instead.

source

pub fn from_str_radix(src: &str, radix: u32) -> Result<u101, ParseIntError>

Converts a string slice in a given base to an integer.

The string is expected to be an optional + sign followed by digits. Leading and trailing whitespace represent an error. Digits are a subset of these characters, depending on radix:

  • 0-9
  • a-z
  • A-Z
Panics

This function panics if radix is not in the range from 2 to 36.

source

pub fn pow(self, exp: u32) -> u101

Raises self to the power of exp, using exponentiation by squaring.

source

pub fn checked_add(self, rhs: u101) -> Option<u101>

Checked integer addition. Computes self + rhs, returning None if overflow occurred.

source

pub fn checked_div(self, rhs: u101) -> Option<u101>

Checked integer division. Computes self / rhs, returning None if rhs == 0.

source

pub fn checked_mul(self, rhs: u101) -> Option<u101>

Checked integer multiplication. Computes self * rhs, returning None if overflow occurred.

source

pub fn checked_sub(self, rhs: u101) -> Option<u101>

Checked integer subtraction. Computes self - rhs, returning None if overflow occurred.

source

pub fn wrapping_add(self, rhs: u101) -> u101

Wrapping (modular) addition. Computes self + rhs, wrapping around at the boundary of the type.

Examples

Basic usage:

assert_eq!(u101::MAX.wrapping_add(u101::try_from(1u128).unwrap()), u101::MIN);
source

pub fn wrapping_sub(self, rhs: u101) -> u101

Wrapping (modular) subtraction. Computes self - rhs, wrapping around at the boundary of the type.

Trait Implementations§

source§

impl Add<&u101> for &u101

§

type Output = u101

The resulting type after applying the + operator.
source§

fn add(self, rhs: &u101) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&u101> for u101

§

type Output = u101

The resulting type after applying the + operator.
source§

fn add(self, rhs: &u101) -> Self::Output

Performs the + operation. Read more
source§

impl<'a> Add<u101> for &'a u101

§

type Output = u101

The resulting type after applying the + operator.
source§

fn add(self, rhs: u101) -> Self::Output

Performs the + operation. Read more
source§

impl Add<u101> for u101

§

type Output = u101

The resulting type after applying the + operator.
source§

fn add(self, rhs: u101) -> Self::Output

Performs the + operation. Read more
source§

impl Binary for u101

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl BitAnd<&u101> for &u101

§

type Output = <u101 as BitAnd<u101>>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &u101) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd<&u101> for u101

§

type Output = <u101 as BitAnd<u101>>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &u101) -> Self::Output

Performs the & operation. Read more
source§

impl<'a> BitAnd<u101> for &'a u101

§

type Output = <u101 as BitAnd<u101>>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u101) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd<u101> for u101

§

type Output = u101

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitOr<&u101> for &u101

§

type Output = <u101 as BitOr<u101>>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &u101) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr<&u101> for u101

§

type Output = <u101 as BitOr<u101>>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &u101) -> Self::Output

Performs the | operation. Read more
source§

impl<'a> BitOr<u101> for &'a u101

§

type Output = <u101 as BitOr<u101>>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u101) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr<u101> for u101

§

type Output = u101

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitXor<&u101> for &u101

§

type Output = <u101 as BitXor<u101>>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &u101) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<&u101> for u101

§

type Output = <u101 as BitXor<u101>>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &u101) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a> BitXor<u101> for &'a u101

§

type Output = <u101 as BitXor<u101>>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: u101) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<u101> for u101

§

type Output = u101

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl Clone for u101

source§

fn clone(&self) -> u101

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for u101

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for u101

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Div<&u101> for &u101

§

type Output = u101

The resulting type after applying the / operator.
source§

fn div(self, rhs: &u101) -> Self::Output

Performs the / operation. Read more
source§

impl Div<&u101> for u101

§

type Output = u101

The resulting type after applying the / operator.
source§

fn div(self, rhs: &u101) -> Self::Output

Performs the / operation. Read more
source§

impl<'a> Div<u101> for &'a u101

§

type Output = u101

The resulting type after applying the / operator.
source§

fn div(self, rhs: u101) -> Self::Output

Performs the / operation. Read more
source§

impl Div<u101> for u101

§

type Output = u101

The resulting type after applying the / operator.
source§

fn div(self, rhs: u101) -> Self::Output

Performs the / operation. Read more
source§

impl From<u1> for u101

source§

fn from(x: u1) -> u101

Converts to this type from the input type.
source§

impl From<u10> for u101

source§

fn from(x: u10) -> u101

Converts to this type from the input type.
source§

impl From<u100> for u101

source§

fn from(x: u100) -> u101

Converts to this type from the input type.
source§

impl From<u101> for i102

source§

fn from(x: u101) -> i102

Converts to this type from the input type.
source§

impl From<u101> for i103

source§

fn from(x: u101) -> i103

Converts to this type from the input type.
source§

impl From<u101> for i104

source§

fn from(x: u101) -> i104

Converts to this type from the input type.
source§

impl From<u101> for i105

source§

fn from(x: u101) -> i105

Converts to this type from the input type.
source§

impl From<u101> for i106

source§

fn from(x: u101) -> i106

Converts to this type from the input type.
source§

impl From<u101> for i107

source§

fn from(x: u101) -> i107

Converts to this type from the input type.
source§

impl From<u101> for i108

source§

fn from(x: u101) -> i108

Converts to this type from the input type.
source§

impl From<u101> for i109

source§

fn from(x: u101) -> i109

Converts to this type from the input type.
source§

impl From<u101> for i110

source§

fn from(x: u101) -> i110

Converts to this type from the input type.
source§

impl From<u101> for i111

source§

fn from(x: u101) -> i111

Converts to this type from the input type.
source§

impl From<u101> for i112

source§

fn from(x: u101) -> i112

Converts to this type from the input type.
source§

impl From<u101> for i113

source§

fn from(x: u101) -> i113

Converts to this type from the input type.
source§

impl From<u101> for i114

source§

fn from(x: u101) -> i114

Converts to this type from the input type.
source§

impl From<u101> for i115

source§

fn from(x: u101) -> i115

Converts to this type from the input type.
source§

impl From<u101> for i116

source§

fn from(x: u101) -> i116

Converts to this type from the input type.
source§

impl From<u101> for i117

source§

fn from(x: u101) -> i117

Converts to this type from the input type.
source§

impl From<u101> for i118

source§

fn from(x: u101) -> i118

Converts to this type from the input type.
source§

impl From<u101> for i119

source§

fn from(x: u101) -> i119

Converts to this type from the input type.
source§

impl From<u101> for i120

source§

fn from(x: u101) -> i120

Converts to this type from the input type.
source§

impl From<u101> for i121

source§

fn from(x: u101) -> i121

Converts to this type from the input type.
source§

impl From<u101> for i122

source§

fn from(x: u101) -> i122

Converts to this type from the input type.
source§

impl From<u101> for i123

source§

fn from(x: u101) -> i123

Converts to this type from the input type.
source§

impl From<u101> for i124

source§

fn from(x: u101) -> i124

Converts to this type from the input type.
source§

impl From<u101> for i125

source§

fn from(x: u101) -> i125

Converts to this type from the input type.
source§

impl From<u101> for i126

source§

fn from(x: u101) -> i126

Converts to this type from the input type.
source§

impl From<u101> for i127

source§

fn from(x: u101) -> i127

Converts to this type from the input type.
source§

impl From<u101> for u102

source§

fn from(x: u101) -> u102

Converts to this type from the input type.
source§

impl From<u101> for u103

source§

fn from(x: u101) -> u103

Converts to this type from the input type.
source§

impl From<u101> for u104

source§

fn from(x: u101) -> u104

Converts to this type from the input type.
source§

impl From<u101> for u105

source§

fn from(x: u101) -> u105

Converts to this type from the input type.
source§

impl From<u101> for u106

source§

fn from(x: u101) -> u106

Converts to this type from the input type.
source§

impl From<u101> for u107

source§

fn from(x: u101) -> u107

Converts to this type from the input type.
source§

impl From<u101> for u108

source§

fn from(x: u101) -> u108

Converts to this type from the input type.
source§

impl From<u101> for u109

source§

fn from(x: u101) -> u109

Converts to this type from the input type.
source§

impl From<u101> for u110

source§

fn from(x: u101) -> u110

Converts to this type from the input type.
source§

impl From<u101> for u111

source§

fn from(x: u101) -> u111

Converts to this type from the input type.
source§

impl From<u101> for u112

source§

fn from(x: u101) -> u112

Converts to this type from the input type.
source§

impl From<u101> for u113

source§

fn from(x: u101) -> u113

Converts to this type from the input type.
source§

impl From<u101> for u114

source§

fn from(x: u101) -> u114

Converts to this type from the input type.
source§

impl From<u101> for u115

source§

fn from(x: u101) -> u115

Converts to this type from the input type.
source§

impl From<u101> for u116

source§

fn from(x: u101) -> u116

Converts to this type from the input type.
source§

impl From<u101> for u117

source§

fn from(x: u101) -> u117

Converts to this type from the input type.
source§

impl From<u101> for u118

source§

fn from(x: u101) -> u118

Converts to this type from the input type.
source§

impl From<u101> for u119

source§

fn from(x: u101) -> u119

Converts to this type from the input type.
source§

impl From<u101> for u120

source§

fn from(x: u101) -> u120

Converts to this type from the input type.
source§

impl From<u101> for u121

source§

fn from(x: u101) -> u121

Converts to this type from the input type.
source§

impl From<u101> for u122

source§

fn from(x: u101) -> u122

Converts to this type from the input type.
source§

impl From<u101> for u123

source§

fn from(x: u101) -> u123

Converts to this type from the input type.
source§

impl From<u101> for u124

source§

fn from(x: u101) -> u124

Converts to this type from the input type.
source§

impl From<u101> for u125

source§

fn from(x: u101) -> u125

Converts to this type from the input type.
source§

impl From<u101> for u126

source§

fn from(x: u101) -> u126

Converts to this type from the input type.
source§

impl From<u101> for u127

source§

fn from(x: u101) -> u127

Converts to this type from the input type.
source§

impl From<u11> for u101

source§

fn from(x: u11) -> u101

Converts to this type from the input type.
source§

impl From<u12> for u101

source§

fn from(x: u12) -> u101

Converts to this type from the input type.
source§

impl From<u13> for u101

source§

fn from(x: u13) -> u101

Converts to this type from the input type.
source§

impl From<u14> for u101

source§

fn from(x: u14) -> u101

Converts to this type from the input type.
source§

impl From<u15> for u101

source§

fn from(x: u15) -> u101

Converts to this type from the input type.
source§

impl From<u16> for u101

source§

fn from(x: u16) -> u101

Converts to this type from the input type.
source§

impl From<u17> for u101

source§

fn from(x: u17) -> u101

Converts to this type from the input type.
source§

impl From<u18> for u101

source§

fn from(x: u18) -> u101

Converts to this type from the input type.
source§

impl From<u19> for u101

source§

fn from(x: u19) -> u101

Converts to this type from the input type.
source§

impl From<u2> for u101

source§

fn from(x: u2) -> u101

Converts to this type from the input type.
source§

impl From<u20> for u101

source§

fn from(x: u20) -> u101

Converts to this type from the input type.
source§

impl From<u21> for u101

source§

fn from(x: u21) -> u101

Converts to this type from the input type.
source§

impl From<u22> for u101

source§

fn from(x: u22) -> u101

Converts to this type from the input type.
source§

impl From<u23> for u101

source§

fn from(x: u23) -> u101

Converts to this type from the input type.
source§

impl From<u24> for u101

source§

fn from(x: u24) -> u101

Converts to this type from the input type.
source§

impl From<u25> for u101

source§

fn from(x: u25) -> u101

Converts to this type from the input type.
source§

impl From<u26> for u101

source§

fn from(x: u26) -> u101

Converts to this type from the input type.
source§

impl From<u27> for u101

source§

fn from(x: u27) -> u101

Converts to this type from the input type.
source§

impl From<u28> for u101

source§

fn from(x: u28) -> u101

Converts to this type from the input type.
source§

impl From<u29> for u101

source§

fn from(x: u29) -> u101

Converts to this type from the input type.
source§

impl From<u3> for u101

source§

fn from(x: u3) -> u101

Converts to this type from the input type.
source§

impl From<u30> for u101

source§

fn from(x: u30) -> u101

Converts to this type from the input type.
source§

impl From<u31> for u101

source§

fn from(x: u31) -> u101

Converts to this type from the input type.
source§

impl From<u32> for u101

source§

fn from(x: u32) -> u101

Converts to this type from the input type.
source§

impl From<u33> for u101

source§

fn from(x: u33) -> u101

Converts to this type from the input type.
source§

impl From<u34> for u101

source§

fn from(x: u34) -> u101

Converts to this type from the input type.
source§

impl From<u35> for u101

source§

fn from(x: u35) -> u101

Converts to this type from the input type.
source§

impl From<u36> for u101

source§

fn from(x: u36) -> u101

Converts to this type from the input type.
source§

impl From<u37> for u101

source§

fn from(x: u37) -> u101

Converts to this type from the input type.
source§

impl From<u38> for u101

source§

fn from(x: u38) -> u101

Converts to this type from the input type.
source§

impl From<u39> for u101

source§

fn from(x: u39) -> u101

Converts to this type from the input type.
source§

impl From<u4> for u101

source§

fn from(x: u4) -> u101

Converts to this type from the input type.
source§

impl From<u40> for u101

source§

fn from(x: u40) -> u101

Converts to this type from the input type.
source§

impl From<u41> for u101

source§

fn from(x: u41) -> u101

Converts to this type from the input type.
source§

impl From<u42> for u101

source§

fn from(x: u42) -> u101

Converts to this type from the input type.
source§

impl From<u43> for u101

source§

fn from(x: u43) -> u101

Converts to this type from the input type.
source§

impl From<u44> for u101

source§

fn from(x: u44) -> u101

Converts to this type from the input type.
source§

impl From<u45> for u101

source§

fn from(x: u45) -> u101

Converts to this type from the input type.
source§

impl From<u46> for u101

source§

fn from(x: u46) -> u101

Converts to this type from the input type.
source§

impl From<u47> for u101

source§

fn from(x: u47) -> u101

Converts to this type from the input type.
source§

impl From<u48> for u101

source§

fn from(x: u48) -> u101

Converts to this type from the input type.
source§

impl From<u49> for u101

source§

fn from(x: u49) -> u101

Converts to this type from the input type.
source§

impl From<u5> for u101

source§

fn from(x: u5) -> u101

Converts to this type from the input type.
source§

impl From<u50> for u101

source§

fn from(x: u50) -> u101

Converts to this type from the input type.
source§

impl From<u51> for u101

source§

fn from(x: u51) -> u101

Converts to this type from the input type.
source§

impl From<u52> for u101

source§

fn from(x: u52) -> u101

Converts to this type from the input type.
source§

impl From<u53> for u101

source§

fn from(x: u53) -> u101

Converts to this type from the input type.
source§

impl From<u54> for u101

source§

fn from(x: u54) -> u101

Converts to this type from the input type.
source§

impl From<u55> for u101

source§

fn from(x: u55) -> u101

Converts to this type from the input type.
source§

impl From<u56> for u101

source§

fn from(x: u56) -> u101

Converts to this type from the input type.
source§

impl From<u57> for u101

source§

fn from(x: u57) -> u101

Converts to this type from the input type.
source§

impl From<u58> for u101

source§

fn from(x: u58) -> u101

Converts to this type from the input type.
source§

impl From<u59> for u101

source§

fn from(x: u59) -> u101

Converts to this type from the input type.
source§

impl From<u6> for u101

source§

fn from(x: u6) -> u101

Converts to this type from the input type.
source§

impl From<u60> for u101

source§

fn from(x: u60) -> u101

Converts to this type from the input type.
source§

impl From<u61> for u101

source§

fn from(x: u61) -> u101

Converts to this type from the input type.
source§

impl From<u62> for u101

source§

fn from(x: u62) -> u101

Converts to this type from the input type.
source§

impl From<u63> for u101

source§

fn from(x: u63) -> u101

Converts to this type from the input type.
source§

impl From<u64> for u101

source§

fn from(x: u64) -> u101

Converts to this type from the input type.
source§

impl From<u65> for u101

source§

fn from(x: u65) -> u101

Converts to this type from the input type.
source§

impl From<u66> for u101

source§

fn from(x: u66) -> u101

Converts to this type from the input type.
source§

impl From<u67> for u101

source§

fn from(x: u67) -> u101

Converts to this type from the input type.
source§

impl From<u68> for u101

source§

fn from(x: u68) -> u101

Converts to this type from the input type.
source§

impl From<u69> for u101

source§

fn from(x: u69) -> u101

Converts to this type from the input type.
source§

impl From<u7> for u101

source§

fn from(x: u7) -> u101

Converts to this type from the input type.
source§

impl From<u70> for u101

source§

fn from(x: u70) -> u101

Converts to this type from the input type.
source§

impl From<u71> for u101

source§

fn from(x: u71) -> u101

Converts to this type from the input type.
source§

impl From<u72> for u101

source§

fn from(x: u72) -> u101

Converts to this type from the input type.
source§

impl From<u73> for u101

source§

fn from(x: u73) -> u101

Converts to this type from the input type.
source§

impl From<u74> for u101

source§

fn from(x: u74) -> u101

Converts to this type from the input type.
source§

impl From<u75> for u101

source§

fn from(x: u75) -> u101

Converts to this type from the input type.
source§

impl From<u76> for u101

source§

fn from(x: u76) -> u101

Converts to this type from the input type.
source§

impl From<u77> for u101

source§

fn from(x: u77) -> u101

Converts to this type from the input type.
source§

impl From<u78> for u101

source§

fn from(x: u78) -> u101

Converts to this type from the input type.
source§

impl From<u79> for u101

source§

fn from(x: u79) -> u101

Converts to this type from the input type.
source§

impl From<u8> for u101

source§

fn from(x: u8) -> u101

Converts to this type from the input type.
source§

impl From<u80> for u101

source§

fn from(x: u80) -> u101

Converts to this type from the input type.
source§

impl From<u81> for u101

source§

fn from(x: u81) -> u101

Converts to this type from the input type.
source§

impl From<u82> for u101

source§

fn from(x: u82) -> u101

Converts to this type from the input type.
source§

impl From<u83> for u101

source§

fn from(x: u83) -> u101

Converts to this type from the input type.
source§

impl From<u84> for u101

source§

fn from(x: u84) -> u101

Converts to this type from the input type.
source§

impl From<u85> for u101

source§

fn from(x: u85) -> u101

Converts to this type from the input type.
source§

impl From<u86> for u101

source§

fn from(x: u86) -> u101

Converts to this type from the input type.
source§

impl From<u87> for u101

source§

fn from(x: u87) -> u101

Converts to this type from the input type.
source§

impl From<u88> for u101

source§

fn from(x: u88) -> u101

Converts to this type from the input type.
source§

impl From<u89> for u101

source§

fn from(x: u89) -> u101

Converts to this type from the input type.
source§

impl From<u9> for u101

source§

fn from(x: u9) -> u101

Converts to this type from the input type.
source§

impl From<u90> for u101

source§

fn from(x: u90) -> u101

Converts to this type from the input type.
source§

impl From<u91> for u101

source§

fn from(x: u91) -> u101

Converts to this type from the input type.
source§

impl From<u92> for u101

source§

fn from(x: u92) -> u101

Converts to this type from the input type.
source§

impl From<u93> for u101

source§

fn from(x: u93) -> u101

Converts to this type from the input type.
source§

impl From<u94> for u101

source§

fn from(x: u94) -> u101

Converts to this type from the input type.
source§

impl From<u95> for u101

source§

fn from(x: u95) -> u101

Converts to this type from the input type.
source§

impl From<u96> for u101

source§

fn from(x: u96) -> u101

Converts to this type from the input type.
source§

impl From<u97> for u101

source§

fn from(x: u97) -> u101

Converts to this type from the input type.
source§

impl From<u98> for u101

source§

fn from(x: u98) -> u101

Converts to this type from the input type.
source§

impl From<u99> for u101

source§

fn from(x: u99) -> u101

Converts to this type from the input type.
source§

impl Hash for u101

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl LowerHex for u101

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Mul<&u101> for &u101

§

type Output = u101

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &u101) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<&u101> for u101

§

type Output = u101

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &u101) -> Self::Output

Performs the * operation. Read more
source§

impl<'a> Mul<u101> for &'a u101

§

type Output = u101

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u101) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<u101> for u101

§

type Output = u101

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u101) -> Self::Output

Performs the * operation. Read more
source§

impl Not for &u101

§

type Output = <u101 as Not>::Output

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Not for u101

§

type Output = u101

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Num for u101

Available on crate feature num-traits only.
§

type FromStrRadixErr = ParseIntError

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Octal for u101

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl One for u101

Available on crate feature num-traits only.
source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl Ord for u101

source§

fn cmp(&self, other: &u101) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<u101> for u101

source§

fn eq(&self, other: &u101) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<u101> for u101

source§

fn partial_cmp(&self, other: &u101) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Rem<&u101> for &u101

§

type Output = u101

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &u101) -> Self::Output

Performs the % operation. Read more
source§

impl Rem<&u101> for u101

§

type Output = u101

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &u101) -> Self::Output

Performs the % operation. Read more
source§

impl<'a> Rem<u101> for &'a u101

§

type Output = u101

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u101) -> Self::Output

Performs the % operation. Read more
source§

impl Rem<u101> for u101

§

type Output = u101

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u101) -> Self::Output

Performs the % operation. Read more
source§

impl Serialize for u101

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub<&u101> for &u101

§

type Output = u101

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u101) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<&u101> for u101

§

type Output = u101

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &u101) -> Self::Output

Performs the - operation. Read more
source§

impl<'a> Sub<u101> for &'a u101

§

type Output = u101

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u101) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<u101> for u101

§

type Output = u101

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u101) -> Self::Output

Performs the - operation. Read more
source§

impl TryFrom<i1> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i1) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i10> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i10) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i100> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i100) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i101> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i101) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i102> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i102) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i103> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i103) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i104> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i104) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i105> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i105) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i106> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i106) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i107> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i107) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i108> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i108) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i109> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i109) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i11> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i11) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i110> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i110) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i111> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i111) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i112> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i112) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i113> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i113) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i114> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i114) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i115> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i115) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i116> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i116) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i117> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i117) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i118> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i118) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i119> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i119) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i12> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i12) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i120> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i120) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i121> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i121) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i122> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i122) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i123> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i123) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i124> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i124) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i125> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i125) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i126> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i126) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i127> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i127) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i128> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i128) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i13> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i13) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i14> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i14) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i15> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i15) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i16> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i16) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i17> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i17) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i18> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i18) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i19> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i19) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i2> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i2) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i20> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i20) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i21> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i21) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i22> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i22) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i23> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i23) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i24> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i24) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i25> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i25) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i26> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i26) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i27> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i27) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i28> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i28) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i29> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i29) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i3> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i3) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i30> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i30) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i31> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i31) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i32> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i32) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i33> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i33) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i34> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i34) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i35> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i35) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i36> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i36) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i37> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i37) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i38> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i38) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i39> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i39) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i4> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i4) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i40> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i40) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i41> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i41) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i42> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i42) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i43> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i43) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i44> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i44) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i45> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i45) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i46> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i46) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i47> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i47) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i48> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i48) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i49> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i49) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i5> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i5) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i50> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i50) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i51> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i51) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i52> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i52) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i53> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i53) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i54> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i54) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i55> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i55) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i56> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i56) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i57> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i57) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i58> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i58) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i59> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i59) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i6> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i6) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i60> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i60) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i61> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i61) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i62> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i62) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i63> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i63) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i64> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i64) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i65> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i65) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i66> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i66) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i67> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i67) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i68> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i68) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i69> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i69) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i7> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i7) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i70> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i70) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i71> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i71) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i72> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i72) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i73> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i73) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i74> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i74) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i75> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i75) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i76> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i76) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i77> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i77) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i78> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i78) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i79> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i79) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i8> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i8) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i80> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i80) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i81> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i81) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i82> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i82) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i83> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i83) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i84> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i84) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i85> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i85) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i86> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i86) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i87> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i87) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i88> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i88) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i89> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i89) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i9> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i9) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i90> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i90) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i91> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i91) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i92> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i92) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i93> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i93) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i94> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i94) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i95> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i95) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i96> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i96) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i97> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i97) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i98> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i98) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<i99> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: i99) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i1

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i1, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i10

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i10, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i100

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i100, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i11

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i11, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i12

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i12, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i13

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i13, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i14

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i14, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i15

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i15, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i17

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i17, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i18

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i18, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i19

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i19, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i2

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i2, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i20

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i20, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i21

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i21, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i22

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i22, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i23

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i23, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i24

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i24, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i25

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i25, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i26

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i26, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i27

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i27, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i28

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i28, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i29

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i29, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i3

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i3, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i30

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i30, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i31

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i31, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i33

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i33, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i34

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i34, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i35

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i35, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i36

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i36, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i37

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i37, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i38

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i38, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i39

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i39, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i4

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i4, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i40

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i40, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i41

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i41, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i42

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i42, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i43

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i43, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i44

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i44, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i45

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i45, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i46

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i46, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i47

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i47, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i48

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i48, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i49

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i49, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i5

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i5, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i50

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i50, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i51

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i51, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i52

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i52, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i53

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i53, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i54

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i54, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i55

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i55, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i56

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i56, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i57

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i57, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i58

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i58, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i59

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i59, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i6

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i6, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i60

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i60, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i61

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i61, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i62

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i62, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i63

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i63, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i65

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i65, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i66

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i66, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i67

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i67, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i68

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i68, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i69

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i69, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i7

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i7, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i70

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i70, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i71

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i71, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i72

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i72, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i73

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i73, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i74

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i74, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i75

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i75, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i76

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i76, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i77

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i77, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i78

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i78, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i79

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i79, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i80

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i80, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i81

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i81, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i82

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i82, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i83

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i83, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i84

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i84, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i85

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i85, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i86

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i86, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i87

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i87, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i88

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i88, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i89

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i89, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i9

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i9, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i90

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i90, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i91

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i91, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i92

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i92, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i93

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i93, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i94

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i94, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i95

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i95, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i96

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i96, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i97

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i97, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i98

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i98, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for i99

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<i99, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u1

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u1, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u10

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u10, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u100

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u100, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u11

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u11, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u12

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u12, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u13

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u13, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u14

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u14, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u15

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u15, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u17

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u17, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u18

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u18, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u19

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u19, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u2

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u2, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u20

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u20, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u21

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u21, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u22

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u22, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u23

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u23, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u24

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u24, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u25

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u25, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u26

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u26, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u27

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u27, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u28

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u28, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u29

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u29, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u3

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u3, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u30

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u30, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u31

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u31, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u33

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u33, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u34

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u34, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u35

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u35, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u36

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u36, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u37

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u37, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u38

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u38, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u39

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u39, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u4

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u4, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u40

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u40, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u41

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u41, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u42

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u42, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u43

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u43, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u44

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u44, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u45

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u45, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u46

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u46, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u47

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u47, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u48

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u48, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u49

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u49, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u5

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u5, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u50

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u50, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u51

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u51, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u52

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u52, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u53

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u53, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u54

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u54, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u55

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u55, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u56

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u56, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u57

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u57, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u58

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u58, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u59

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u59, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u6

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u6, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u60

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u60, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u61

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u61, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u62

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u62, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u63

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u63, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u65

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u65, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u66

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u66, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u67

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u67, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u68

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u68, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u69

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u69, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u7

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u7, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u70

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u70, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u71

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u71, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u72

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u72, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u73

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u73, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u74

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u74, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u75

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u75, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u76

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u76, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u77

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u77, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u78

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u78, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u79

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u79, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u80

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u80, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u81

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u81, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u82

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u82, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u83

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u83, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u84

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u84, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u85

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u85, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u86

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u86, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u87

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u87, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u88

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u88, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u89

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u89, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u9

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u9, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u90

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u90, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u91

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u91, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u92

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u92, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u93

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u93, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u94

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u94, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u95

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u95, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u96

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u96, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u97

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u97, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u98

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u98, Self::Error>

Performs the conversion.
source§

impl TryFrom<u101> for u99

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u101) -> Result<u99, Self::Error>

Performs the conversion.
source§

impl TryFrom<u102> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u102) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u103> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u103) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u104> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u104) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u105> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u105) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u106> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u106) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u107> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u107) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u108> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u108) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u109> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u109) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u110> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u110) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u111> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u111) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u112> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u112) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u113> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u113) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u114> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u114) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u115> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u115) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u116> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u116) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u117> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u117) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u118> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u118) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u119> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u119) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u120> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u120) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u121> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u121) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u122> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u122) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u123> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u123) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u124> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u124) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u125> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u125) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u126> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u126) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u127> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u127) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl TryFrom<u128> for u101

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(x: u128) -> Result<u101, Self::Error>

Performs the conversion.
source§

impl UpperHex for u101

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Zero for u101

Available on crate feature num-traits only.
source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Copy for u101

source§

impl Eq for u101

source§

impl StructuralEq for u101

source§

impl StructuralPartialEq for u101

Auto Trait Implementations§

§

impl RefUnwindSafe for u101

§

impl Send for u101

§

impl Sync for u101

§

impl Unpin for u101

§

impl UnwindSafe for u101

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for Twhere T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

source§

impl<T> NumRef for Twhere T: Num + for<'r> NumOps<&'r T, T>,

source§

impl<T, Base> RefNum<Base> for Twhere T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,