Struct ux2::i82

source ·
pub struct i82(_);
Expand description

The 82-bit signed integer type.

Implementations§

source§

impl i82

source

pub const MIN: i82 = _

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

Examples

Basic usage:

assert_eq!(i82::MIN, i82::try_from(-2417851639229258349412352i128).unwrap());
source

pub const MAX: i82 = _

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

Examples

Basic usage:

assert_eq!(i82::MAX, i82::try_from(2417851639229258349412351i128).unwrap());
source

pub const BITS: u32 = 82u32

The size of this integer type in bits.

Examples
assert_eq!(i82::BITS, 82);
source

pub const fn abs(self) -> i82

Computes the absolute value of self.

Overflow behavior

The absolute value of i82::MIN cannot be represented as an i82, and attempting to calculate it will cause an overflow. This means that code in debug mode will trigger a panic on this case and optimized code will return i82::MIN without a panic.

Examples

Basic usage:

assert_eq!(i82::MAX.abs(), i82::MAX);
assert_eq!((i82::MIN + i82::try_from(1i8).unwrap()).abs(), i82::MAX);
source

pub fn from_be_bytes(bytes: [u8; 11]) -> 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; 11]) -> 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; 11]) -> 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; 11]

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

Unused bits are undefined.

source

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

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

Unused bits are undefined.

source

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

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.

Unused bits are undefined.

source

pub fn from_str_radix(src: &str, radix: u32) -> Result<i82, 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.

Trait Implementations§

source§

impl Add<&i82> for &i82

§

type Output = i82

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<&i82> for i82

§

type Output = i82

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = i82

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i82> for i82

§

type Output = i82

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Binary for i82

source§

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

Formats the value using the given formatter.
source§

impl BitAnd<&i82> for &i82

§

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

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<&i82> for i82

§

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

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

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

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<i82> for i82

§

type Output = i82

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<&i82> for &i82

§

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

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<&i82> for i82

§

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

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

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

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<i82> for i82

§

type Output = i82

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<&i82> for &i82

§

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

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<&i82> for i82

§

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

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

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

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<i82> for i82

§

type Output = i82

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for i82

source§

fn clone(&self) -> i82

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 i82

source§

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

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

impl Div<&i82> for &i82

§

type Output = i82

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<&i82> for i82

§

type Output = i82

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = i82

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i82> for i82

§

type Output = i82

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl From<i1> for i82

source§

fn from(x: i1) -> i82

Converts to this type from the input type.
source§

impl From<i10> for i82

source§

fn from(x: i10) -> i82

Converts to this type from the input type.
source§

impl From<i11> for i82

source§

fn from(x: i11) -> i82

Converts to this type from the input type.
source§

impl From<i12> for i82

source§

fn from(x: i12) -> i82

Converts to this type from the input type.
source§

impl From<i13> for i82

source§

fn from(x: i13) -> i82

Converts to this type from the input type.
source§

impl From<i14> for i82

source§

fn from(x: i14) -> i82

Converts to this type from the input type.
source§

impl From<i15> for i82

source§

fn from(x: i15) -> i82

Converts to this type from the input type.
source§

impl From<i16> for i82

source§

fn from(x: i16) -> i82

Converts to this type from the input type.
source§

impl From<i17> for i82

source§

fn from(x: i17) -> i82

Converts to this type from the input type.
source§

impl From<i18> for i82

source§

fn from(x: i18) -> i82

Converts to this type from the input type.
source§

impl From<i19> for i82

source§

fn from(x: i19) -> i82

Converts to this type from the input type.
source§

impl From<i2> for i82

source§

fn from(x: i2) -> i82

Converts to this type from the input type.
source§

impl From<i20> for i82

source§

fn from(x: i20) -> i82

Converts to this type from the input type.
source§

impl From<i21> for i82

source§

fn from(x: i21) -> i82

Converts to this type from the input type.
source§

impl From<i22> for i82

source§

fn from(x: i22) -> i82

Converts to this type from the input type.
source§

impl From<i23> for i82

source§

fn from(x: i23) -> i82

Converts to this type from the input type.
source§

impl From<i24> for i82

source§

fn from(x: i24) -> i82

Converts to this type from the input type.
source§

impl From<i25> for i82

source§

fn from(x: i25) -> i82

Converts to this type from the input type.
source§

impl From<i26> for i82

source§

fn from(x: i26) -> i82

Converts to this type from the input type.
source§

impl From<i27> for i82

source§

fn from(x: i27) -> i82

Converts to this type from the input type.
source§

impl From<i28> for i82

source§

fn from(x: i28) -> i82

Converts to this type from the input type.
source§

impl From<i29> for i82

source§

fn from(x: i29) -> i82

Converts to this type from the input type.
source§

impl From<i3> for i82

source§

fn from(x: i3) -> i82

Converts to this type from the input type.
source§

impl From<i30> for i82

source§

fn from(x: i30) -> i82

Converts to this type from the input type.
source§

impl From<i31> for i82

source§

fn from(x: i31) -> i82

Converts to this type from the input type.
source§

impl From<i32> for i82

source§

fn from(x: i32) -> i82

Converts to this type from the input type.
source§

impl From<i33> for i82

source§

fn from(x: i33) -> i82

Converts to this type from the input type.
source§

impl From<i34> for i82

source§

fn from(x: i34) -> i82

Converts to this type from the input type.
source§

impl From<i35> for i82

source§

fn from(x: i35) -> i82

Converts to this type from the input type.
source§

impl From<i36> for i82

source§

fn from(x: i36) -> i82

Converts to this type from the input type.
source§

impl From<i37> for i82

source§

fn from(x: i37) -> i82

Converts to this type from the input type.
source§

impl From<i38> for i82

source§

fn from(x: i38) -> i82

Converts to this type from the input type.
source§

impl From<i39> for i82

source§

fn from(x: i39) -> i82

Converts to this type from the input type.
source§

impl From<i4> for i82

source§

fn from(x: i4) -> i82

Converts to this type from the input type.
source§

impl From<i40> for i82

source§

fn from(x: i40) -> i82

Converts to this type from the input type.
source§

impl From<i41> for i82

source§

fn from(x: i41) -> i82

Converts to this type from the input type.
source§

impl From<i42> for i82

source§

fn from(x: i42) -> i82

Converts to this type from the input type.
source§

impl From<i43> for i82

source§

fn from(x: i43) -> i82

Converts to this type from the input type.
source§

impl From<i44> for i82

source§

fn from(x: i44) -> i82

Converts to this type from the input type.
source§

impl From<i45> for i82

source§

fn from(x: i45) -> i82

Converts to this type from the input type.
source§

impl From<i46> for i82

source§

fn from(x: i46) -> i82

Converts to this type from the input type.
source§

impl From<i47> for i82

source§

fn from(x: i47) -> i82

Converts to this type from the input type.
source§

impl From<i48> for i82

source§

fn from(x: i48) -> i82

Converts to this type from the input type.
source§

impl From<i49> for i82

source§

fn from(x: i49) -> i82

Converts to this type from the input type.
source§

impl From<i5> for i82

source§

fn from(x: i5) -> i82

Converts to this type from the input type.
source§

impl From<i50> for i82

source§

fn from(x: i50) -> i82

Converts to this type from the input type.
source§

impl From<i51> for i82

source§

fn from(x: i51) -> i82

Converts to this type from the input type.
source§

impl From<i52> for i82

source§

fn from(x: i52) -> i82

Converts to this type from the input type.
source§

impl From<i53> for i82

source§

fn from(x: i53) -> i82

Converts to this type from the input type.
source§

impl From<i54> for i82

source§

fn from(x: i54) -> i82

Converts to this type from the input type.
source§

impl From<i55> for i82

source§

fn from(x: i55) -> i82

Converts to this type from the input type.
source§

impl From<i56> for i82

source§

fn from(x: i56) -> i82

Converts to this type from the input type.
source§

impl From<i57> for i82

source§

fn from(x: i57) -> i82

Converts to this type from the input type.
source§

impl From<i58> for i82

source§

fn from(x: i58) -> i82

Converts to this type from the input type.
source§

impl From<i59> for i82

source§

fn from(x: i59) -> i82

Converts to this type from the input type.
source§

impl From<i6> for i82

source§

fn from(x: i6) -> i82

Converts to this type from the input type.
source§

impl From<i60> for i82

source§

fn from(x: i60) -> i82

Converts to this type from the input type.
source§

impl From<i61> for i82

source§

fn from(x: i61) -> i82

Converts to this type from the input type.
source§

impl From<i62> for i82

source§

fn from(x: i62) -> i82

Converts to this type from the input type.
source§

impl From<i63> for i82

source§

fn from(x: i63) -> i82

Converts to this type from the input type.
source§

impl From<i64> for i82

source§

fn from(x: i64) -> i82

Converts to this type from the input type.
source§

impl From<i65> for i82

source§

fn from(x: i65) -> i82

Converts to this type from the input type.
source§

impl From<i66> for i82

source§

fn from(x: i66) -> i82

Converts to this type from the input type.
source§

impl From<i67> for i82

source§

fn from(x: i67) -> i82

Converts to this type from the input type.
source§

impl From<i68> for i82

source§

fn from(x: i68) -> i82

Converts to this type from the input type.
source§

impl From<i69> for i82

source§

fn from(x: i69) -> i82

Converts to this type from the input type.
source§

impl From<i7> for i82

source§

fn from(x: i7) -> i82

Converts to this type from the input type.
source§

impl From<i70> for i82

source§

fn from(x: i70) -> i82

Converts to this type from the input type.
source§

impl From<i71> for i82

source§

fn from(x: i71) -> i82

Converts to this type from the input type.
source§

impl From<i72> for i82

source§

fn from(x: i72) -> i82

Converts to this type from the input type.
source§

impl From<i73> for i82

source§

fn from(x: i73) -> i82

Converts to this type from the input type.
source§

impl From<i74> for i82

source§

fn from(x: i74) -> i82

Converts to this type from the input type.
source§

impl From<i75> for i82

source§

fn from(x: i75) -> i82

Converts to this type from the input type.
source§

impl From<i76> for i82

source§

fn from(x: i76) -> i82

Converts to this type from the input type.
source§

impl From<i77> for i82

source§

fn from(x: i77) -> i82

Converts to this type from the input type.
source§

impl From<i78> for i82

source§

fn from(x: i78) -> i82

Converts to this type from the input type.
source§

impl From<i79> for i82

source§

fn from(x: i79) -> i82

Converts to this type from the input type.
source§

impl From<i8> for i82

source§

fn from(x: i8) -> i82

Converts to this type from the input type.
source§

impl From<i80> for i82

source§

fn from(x: i80) -> i82

Converts to this type from the input type.
source§

impl From<i81> for i82

source§

fn from(x: i81) -> i82

Converts to this type from the input type.
source§

impl From<i82> for i100

source§

fn from(x: i82) -> i100

Converts to this type from the input type.
source§

impl From<i82> for i101

source§

fn from(x: i82) -> i101

Converts to this type from the input type.
source§

impl From<i82> for i102

source§

fn from(x: i82) -> i102

Converts to this type from the input type.
source§

impl From<i82> for i103

source§

fn from(x: i82) -> i103

Converts to this type from the input type.
source§

impl From<i82> for i104

source§

fn from(x: i82) -> i104

Converts to this type from the input type.
source§

impl From<i82> for i105

source§

fn from(x: i82) -> i105

Converts to this type from the input type.
source§

impl From<i82> for i106

source§

fn from(x: i82) -> i106

Converts to this type from the input type.
source§

impl From<i82> for i107

source§

fn from(x: i82) -> i107

Converts to this type from the input type.
source§

impl From<i82> for i108

source§

fn from(x: i82) -> i108

Converts to this type from the input type.
source§

impl From<i82> for i109

source§

fn from(x: i82) -> i109

Converts to this type from the input type.
source§

impl From<i82> for i110

source§

fn from(x: i82) -> i110

Converts to this type from the input type.
source§

impl From<i82> for i111

source§

fn from(x: i82) -> i111

Converts to this type from the input type.
source§

impl From<i82> for i112

source§

fn from(x: i82) -> i112

Converts to this type from the input type.
source§

impl From<i82> for i113

source§

fn from(x: i82) -> i113

Converts to this type from the input type.
source§

impl From<i82> for i114

source§

fn from(x: i82) -> i114

Converts to this type from the input type.
source§

impl From<i82> for i115

source§

fn from(x: i82) -> i115

Converts to this type from the input type.
source§

impl From<i82> for i116

source§

fn from(x: i82) -> i116

Converts to this type from the input type.
source§

impl From<i82> for i117

source§

fn from(x: i82) -> i117

Converts to this type from the input type.
source§

impl From<i82> for i118

source§

fn from(x: i82) -> i118

Converts to this type from the input type.
source§

impl From<i82> for i119

source§

fn from(x: i82) -> i119

Converts to this type from the input type.
source§

impl From<i82> for i120

source§

fn from(x: i82) -> i120

Converts to this type from the input type.
source§

impl From<i82> for i121

source§

fn from(x: i82) -> i121

Converts to this type from the input type.
source§

impl From<i82> for i122

source§

fn from(x: i82) -> i122

Converts to this type from the input type.
source§

impl From<i82> for i123

source§

fn from(x: i82) -> i123

Converts to this type from the input type.
source§

impl From<i82> for i124

source§

fn from(x: i82) -> i124

Converts to this type from the input type.
source§

impl From<i82> for i125

source§

fn from(x: i82) -> i125

Converts to this type from the input type.
source§

impl From<i82> for i126

source§

fn from(x: i82) -> i126

Converts to this type from the input type.
source§

impl From<i82> for i127

source§

fn from(x: i82) -> i127

Converts to this type from the input type.
source§

impl From<i82> for i83

source§

fn from(x: i82) -> i83

Converts to this type from the input type.
source§

impl From<i82> for i84

source§

fn from(x: i82) -> i84

Converts to this type from the input type.
source§

impl From<i82> for i85

source§

fn from(x: i82) -> i85

Converts to this type from the input type.
source§

impl From<i82> for i86

source§

fn from(x: i82) -> i86

Converts to this type from the input type.
source§

impl From<i82> for i87

source§

fn from(x: i82) -> i87

Converts to this type from the input type.
source§

impl From<i82> for i88

source§

fn from(x: i82) -> i88

Converts to this type from the input type.
source§

impl From<i82> for i89

source§

fn from(x: i82) -> i89

Converts to this type from the input type.
source§

impl From<i82> for i90

source§

fn from(x: i82) -> i90

Converts to this type from the input type.
source§

impl From<i82> for i91

source§

fn from(x: i82) -> i91

Converts to this type from the input type.
source§

impl From<i82> for i92

source§

fn from(x: i82) -> i92

Converts to this type from the input type.
source§

impl From<i82> for i93

source§

fn from(x: i82) -> i93

Converts to this type from the input type.
source§

impl From<i82> for i94

source§

fn from(x: i82) -> i94

Converts to this type from the input type.
source§

impl From<i82> for i95

source§

fn from(x: i82) -> i95

Converts to this type from the input type.
source§

impl From<i82> for i96

source§

fn from(x: i82) -> i96

Converts to this type from the input type.
source§

impl From<i82> for i97

source§

fn from(x: i82) -> i97

Converts to this type from the input type.
source§

impl From<i82> for i98

source§

fn from(x: i82) -> i98

Converts to this type from the input type.
source§

impl From<i82> for i99

source§

fn from(x: i82) -> i99

Converts to this type from the input type.
source§

impl From<i9> for i82

source§

fn from(x: i9) -> i82

Converts to this type from the input type.
source§

impl From<u1> for i82

source§

fn from(x: u1) -> i82

Converts to this type from the input type.
source§

impl From<u10> for i82

source§

fn from(x: u10) -> i82

Converts to this type from the input type.
source§

impl From<u11> for i82

source§

fn from(x: u11) -> i82

Converts to this type from the input type.
source§

impl From<u12> for i82

source§

fn from(x: u12) -> i82

Converts to this type from the input type.
source§

impl From<u13> for i82

source§

fn from(x: u13) -> i82

Converts to this type from the input type.
source§

impl From<u14> for i82

source§

fn from(x: u14) -> i82

Converts to this type from the input type.
source§

impl From<u15> for i82

source§

fn from(x: u15) -> i82

Converts to this type from the input type.
source§

impl From<u16> for i82

source§

fn from(x: u16) -> i82

Converts to this type from the input type.
source§

impl From<u17> for i82

source§

fn from(x: u17) -> i82

Converts to this type from the input type.
source§

impl From<u18> for i82

source§

fn from(x: u18) -> i82

Converts to this type from the input type.
source§

impl From<u19> for i82

source§

fn from(x: u19) -> i82

Converts to this type from the input type.
source§

impl From<u2> for i82

source§

fn from(x: u2) -> i82

Converts to this type from the input type.
source§

impl From<u20> for i82

source§

fn from(x: u20) -> i82

Converts to this type from the input type.
source§

impl From<u21> for i82

source§

fn from(x: u21) -> i82

Converts to this type from the input type.
source§

impl From<u22> for i82

source§

fn from(x: u22) -> i82

Converts to this type from the input type.
source§

impl From<u23> for i82

source§

fn from(x: u23) -> i82

Converts to this type from the input type.
source§

impl From<u24> for i82

source§

fn from(x: u24) -> i82

Converts to this type from the input type.
source§

impl From<u25> for i82

source§

fn from(x: u25) -> i82

Converts to this type from the input type.
source§

impl From<u26> for i82

source§

fn from(x: u26) -> i82

Converts to this type from the input type.
source§

impl From<u27> for i82

source§

fn from(x: u27) -> i82

Converts to this type from the input type.
source§

impl From<u28> for i82

source§

fn from(x: u28) -> i82

Converts to this type from the input type.
source§

impl From<u29> for i82

source§

fn from(x: u29) -> i82

Converts to this type from the input type.
source§

impl From<u3> for i82

source§

fn from(x: u3) -> i82

Converts to this type from the input type.
source§

impl From<u30> for i82

source§

fn from(x: u30) -> i82

Converts to this type from the input type.
source§

impl From<u31> for i82

source§

fn from(x: u31) -> i82

Converts to this type from the input type.
source§

impl From<u32> for i82

source§

fn from(x: u32) -> i82

Converts to this type from the input type.
source§

impl From<u33> for i82

source§

fn from(x: u33) -> i82

Converts to this type from the input type.
source§

impl From<u34> for i82

source§

fn from(x: u34) -> i82

Converts to this type from the input type.
source§

impl From<u35> for i82

source§

fn from(x: u35) -> i82

Converts to this type from the input type.
source§

impl From<u36> for i82

source§

fn from(x: u36) -> i82

Converts to this type from the input type.
source§

impl From<u37> for i82

source§

fn from(x: u37) -> i82

Converts to this type from the input type.
source§

impl From<u38> for i82

source§

fn from(x: u38) -> i82

Converts to this type from the input type.
source§

impl From<u39> for i82

source§

fn from(x: u39) -> i82

Converts to this type from the input type.
source§

impl From<u4> for i82

source§

fn from(x: u4) -> i82

Converts to this type from the input type.
source§

impl From<u40> for i82

source§

fn from(x: u40) -> i82

Converts to this type from the input type.
source§

impl From<u41> for i82

source§

fn from(x: u41) -> i82

Converts to this type from the input type.
source§

impl From<u42> for i82

source§

fn from(x: u42) -> i82

Converts to this type from the input type.
source§

impl From<u43> for i82

source§

fn from(x: u43) -> i82

Converts to this type from the input type.
source§

impl From<u44> for i82

source§

fn from(x: u44) -> i82

Converts to this type from the input type.
source§

impl From<u45> for i82

source§

fn from(x: u45) -> i82

Converts to this type from the input type.
source§

impl From<u46> for i82

source§

fn from(x: u46) -> i82

Converts to this type from the input type.
source§

impl From<u47> for i82

source§

fn from(x: u47) -> i82

Converts to this type from the input type.
source§

impl From<u48> for i82

source§

fn from(x: u48) -> i82

Converts to this type from the input type.
source§

impl From<u49> for i82

source§

fn from(x: u49) -> i82

Converts to this type from the input type.
source§

impl From<u5> for i82

source§

fn from(x: u5) -> i82

Converts to this type from the input type.
source§

impl From<u50> for i82

source§

fn from(x: u50) -> i82

Converts to this type from the input type.
source§

impl From<u51> for i82

source§

fn from(x: u51) -> i82

Converts to this type from the input type.
source§

impl From<u52> for i82

source§

fn from(x: u52) -> i82

Converts to this type from the input type.
source§

impl From<u53> for i82

source§

fn from(x: u53) -> i82

Converts to this type from the input type.
source§

impl From<u54> for i82

source§

fn from(x: u54) -> i82

Converts to this type from the input type.
source§

impl From<u55> for i82

source§

fn from(x: u55) -> i82

Converts to this type from the input type.
source§

impl From<u56> for i82

source§

fn from(x: u56) -> i82

Converts to this type from the input type.
source§

impl From<u57> for i82

source§

fn from(x: u57) -> i82

Converts to this type from the input type.
source§

impl From<u58> for i82

source§

fn from(x: u58) -> i82

Converts to this type from the input type.
source§

impl From<u59> for i82

source§

fn from(x: u59) -> i82

Converts to this type from the input type.
source§

impl From<u6> for i82

source§

fn from(x: u6) -> i82

Converts to this type from the input type.
source§

impl From<u60> for i82

source§

fn from(x: u60) -> i82

Converts to this type from the input type.
source§

impl From<u61> for i82

source§

fn from(x: u61) -> i82

Converts to this type from the input type.
source§

impl From<u62> for i82

source§

fn from(x: u62) -> i82

Converts to this type from the input type.
source§

impl From<u63> for i82

source§

fn from(x: u63) -> i82

Converts to this type from the input type.
source§

impl From<u64> for i82

source§

fn from(x: u64) -> i82

Converts to this type from the input type.
source§

impl From<u65> for i82

source§

fn from(x: u65) -> i82

Converts to this type from the input type.
source§

impl From<u66> for i82

source§

fn from(x: u66) -> i82

Converts to this type from the input type.
source§

impl From<u67> for i82

source§

fn from(x: u67) -> i82

Converts to this type from the input type.
source§

impl From<u68> for i82

source§

fn from(x: u68) -> i82

Converts to this type from the input type.
source§

impl From<u69> for i82

source§

fn from(x: u69) -> i82

Converts to this type from the input type.
source§

impl From<u7> for i82

source§

fn from(x: u7) -> i82

Converts to this type from the input type.
source§

impl From<u70> for i82

source§

fn from(x: u70) -> i82

Converts to this type from the input type.
source§

impl From<u71> for i82

source§

fn from(x: u71) -> i82

Converts to this type from the input type.
source§

impl From<u72> for i82

source§

fn from(x: u72) -> i82

Converts to this type from the input type.
source§

impl From<u73> for i82

source§

fn from(x: u73) -> i82

Converts to this type from the input type.
source§

impl From<u74> for i82

source§

fn from(x: u74) -> i82

Converts to this type from the input type.
source§

impl From<u75> for i82

source§

fn from(x: u75) -> i82

Converts to this type from the input type.
source§

impl From<u76> for i82

source§

fn from(x: u76) -> i82

Converts to this type from the input type.
source§

impl From<u77> for i82

source§

fn from(x: u77) -> i82

Converts to this type from the input type.
source§

impl From<u78> for i82

source§

fn from(x: u78) -> i82

Converts to this type from the input type.
source§

impl From<u79> for i82

source§

fn from(x: u79) -> i82

Converts to this type from the input type.
source§

impl From<u8> for i82

source§

fn from(x: u8) -> i82

Converts to this type from the input type.
source§

impl From<u80> for i82

source§

fn from(x: u80) -> i82

Converts to this type from the input type.
source§

impl From<u81> for i82

source§

fn from(x: u81) -> i82

Converts to this type from the input type.
source§

impl From<u9> for i82

source§

fn from(x: u9) -> i82

Converts to this type from the input type.
source§

impl Hash for i82

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 i82

source§

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

Formats the value using the given formatter.
source§

impl Mul<&i82> for &i82

§

type Output = i82

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<&i82> for i82

§

type Output = i82

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = i82

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i82> for i82

§

type Output = i82

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Not for &i82

§

type Output = <i82 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 i82

§

type Output = i82

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Octal for i82

source§

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

Formats the value using the given formatter.
source§

impl Ord for i82

source§

fn cmp(&self, other: &i82) -> 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<i82> for i82

source§

fn eq(&self, other: &i82) -> 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<i82> for i82

source§

fn partial_cmp(&self, other: &i82) -> 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<&i82> for &i82

§

type Output = i82

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<&i82> for i82

§

type Output = i82

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = i82

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<i82> for i82

§

type Output = i82

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Sub<&i82> for &i82

§

type Output = i82

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<&i82> for i82

§

type Output = i82

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

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

§

type Output = i82

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<i82> for i82

§

type Output = i82

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl TryFrom<i100> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i101> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i102> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i103> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i104> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i105> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i106> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i107> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i108> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i109> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i110> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i111> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i112> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i113> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i114> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i115> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i116> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i117> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i118> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i119> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i120> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i121> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i122> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i123> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i124> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i125> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i126> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i127> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i128> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i1

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i10

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i11

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i12

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i13

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i14

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i15

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i17

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i18

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i19

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i2

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i20

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i21

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i22

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i23

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i24

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i25

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i26

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i27

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i28

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i29

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i30

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i31

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i33

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i34

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i35

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i36

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i37

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i38

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i39

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i4

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i40

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i41

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i42

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i43

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i44

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i45

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i46

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i47

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i48

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i49

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i5

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i50

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i51

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i52

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i53

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i54

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i55

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i56

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i57

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i58

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i6

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i60

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i61

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i62

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i63

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i65

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i66

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i67

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i68

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i69

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i7

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i70

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i71

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i72

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i73

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i74

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i75

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i76

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i77

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i78

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i79

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i80

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i81

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for i9

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u1

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u10

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u100

§

type Error = TryFromIntError

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

fn try_from(x: i82) -> Result<u100, 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<i82> for u102

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u103

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u104

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u105

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u106

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u107

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u108

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u109

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u11

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u110

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u111

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u112

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u113

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u114

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u115

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u116

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u117

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u118

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u119

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u12

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u120

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u121

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u122

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u123

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u124

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u125

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u126

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u127

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u13

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u14

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u15

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u17

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u18

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u19

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u2

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u20

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u21

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u22

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u23

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u24

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u25

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u26

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u27

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u28

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u29

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u30

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u31

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u33

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u34

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u35

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u36

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u37

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u38

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u39

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u4

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u40

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u41

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u42

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u43

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u44

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u45

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u46

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u47

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u48

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u49

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u5

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u50

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u51

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u52

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u53

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u54

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u55

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u56

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u57

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u58

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u6

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u60

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u61

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u62

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u63

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u65

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u66

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u67

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u68

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u69

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u7

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u70

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u71

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u72

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u73

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u74

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u75

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u76

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u77

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u78

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u79

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u80

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u81

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u83

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u84

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u85

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u86

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u87

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u88

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u89

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u9

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u90

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u91

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u92

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u93

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u94

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u95

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u96

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u97

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u98

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i82> for u99

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i83> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i84> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i85> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i86> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i87> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i88> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i89> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i90> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i91> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i92> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i93> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i94> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i95> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i96> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i97> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i98> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i99> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u100> for i82

§

type Error = TryFromIntError

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

fn try_from(x: u100) -> Result<i82, 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<u102> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u103> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u104> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u105> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u106> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u107> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u108> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u109> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u110> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u111> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u112> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u113> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u114> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u115> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u116> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u117> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u118> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u119> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u120> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u121> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u122> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u123> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u124> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u125> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u126> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u127> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u128> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u82> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u83> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u84> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u85> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u86> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u87> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u88> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u89> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u90> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u91> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u92> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u93> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u94> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u95> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u96> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u97> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u98> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u99> for i82

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl UpperHex for i82

source§

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

Formats the value using the given formatter.
source§

impl Copy for i82

source§

impl Eq for i82

source§

impl StructuralEq for i82

source§

impl StructuralPartialEq for i82

Auto Trait Implementations§

§

impl RefUnwindSafe for i82

§

impl Send for i82

§

impl Sync for i82

§

impl Unpin for i82

§

impl UnwindSafe for i82

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · 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.
const: unstable · 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.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.