Struct ux2::u59

source ·
pub struct u59(_);
Expand description

The 59-bit unsigned integer type.

Implementations§

source§

impl u59

source

pub const MIN: u59 = _

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

Examples

Basic usage:

assert_eq!(u59::MIN, u59::try_from(0u64).unwrap());
source

pub const MAX: u59 = _

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

Examples

Basic usage:

assert_eq!(u59::MAX, u59::try_from(576460752303423487u64).unwrap());
source

pub const BITS: u32 = 59u32

The size of this integer type in bits.

Examples
assert_eq!(u59::BITS, 59);
source

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

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

source

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

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

source

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

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

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

source

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

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

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

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

Examples

Basic usage:

assert_eq!(u59::MAX.wrapping_add(u59::try_from(1u64).unwrap()), u59::MIN);
source

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

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

Trait Implementations§

source§

impl Add<&u59> for &u59

§

type Output = u59

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<&u59> for u59

§

type Output = u59

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

type Output = u59

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u59> for u59

§

type Output = u59

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Binary for u59

source§

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

Formats the value using the given formatter.
source§

impl BitAnd<&u59> for &u59

§

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

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<&u59> for u59

§

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

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

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

§

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

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<u59> for u59

§

type Output = u59

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<&u59> for &u59

§

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

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<&u59> for u59

§

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

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

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

§

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

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<u59> for u59

§

type Output = u59

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<&u59> for &u59

§

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

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<&u59> for u59

§

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

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

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

§

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

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<u59> for u59

§

type Output = u59

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for u59

source§

fn clone(&self) -> u59

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 u59

source§

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

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

impl<'de> Deserialize<'de> for u59

source§

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

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

impl Div<&u59> for &u59

§

type Output = u59

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<&u59> for u59

§

type Output = u59

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

type Output = u59

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u59> for u59

§

type Output = u59

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl From<u1> for u59

source§

fn from(x: u1) -> u59

Converts to this type from the input type.
source§

impl From<u10> for u59

source§

fn from(x: u10) -> u59

Converts to this type from the input type.
source§

impl From<u11> for u59

source§

fn from(x: u11) -> u59

Converts to this type from the input type.
source§

impl From<u12> for u59

source§

fn from(x: u12) -> u59

Converts to this type from the input type.
source§

impl From<u13> for u59

source§

fn from(x: u13) -> u59

Converts to this type from the input type.
source§

impl From<u14> for u59

source§

fn from(x: u14) -> u59

Converts to this type from the input type.
source§

impl From<u15> for u59

source§

fn from(x: u15) -> u59

Converts to this type from the input type.
source§

impl From<u16> for u59

source§

fn from(x: u16) -> u59

Converts to this type from the input type.
source§

impl From<u17> for u59

source§

fn from(x: u17) -> u59

Converts to this type from the input type.
source§

impl From<u18> for u59

source§

fn from(x: u18) -> u59

Converts to this type from the input type.
source§

impl From<u19> for u59

source§

fn from(x: u19) -> u59

Converts to this type from the input type.
source§

impl From<u2> for u59

source§

fn from(x: u2) -> u59

Converts to this type from the input type.
source§

impl From<u20> for u59

source§

fn from(x: u20) -> u59

Converts to this type from the input type.
source§

impl From<u21> for u59

source§

fn from(x: u21) -> u59

Converts to this type from the input type.
source§

impl From<u22> for u59

source§

fn from(x: u22) -> u59

Converts to this type from the input type.
source§

impl From<u23> for u59

source§

fn from(x: u23) -> u59

Converts to this type from the input type.
source§

impl From<u24> for u59

source§

fn from(x: u24) -> u59

Converts to this type from the input type.
source§

impl From<u25> for u59

source§

fn from(x: u25) -> u59

Converts to this type from the input type.
source§

impl From<u26> for u59

source§

fn from(x: u26) -> u59

Converts to this type from the input type.
source§

impl From<u27> for u59

source§

fn from(x: u27) -> u59

Converts to this type from the input type.
source§

impl From<u28> for u59

source§

fn from(x: u28) -> u59

Converts to this type from the input type.
source§

impl From<u29> for u59

source§

fn from(x: u29) -> u59

Converts to this type from the input type.
source§

impl From<u3> for u59

source§

fn from(x: u3) -> u59

Converts to this type from the input type.
source§

impl From<u30> for u59

source§

fn from(x: u30) -> u59

Converts to this type from the input type.
source§

impl From<u31> for u59

source§

fn from(x: u31) -> u59

Converts to this type from the input type.
source§

impl From<u32> for u59

source§

fn from(x: u32) -> u59

Converts to this type from the input type.
source§

impl From<u33> for u59

source§

fn from(x: u33) -> u59

Converts to this type from the input type.
source§

impl From<u34> for u59

source§

fn from(x: u34) -> u59

Converts to this type from the input type.
source§

impl From<u35> for u59

source§

fn from(x: u35) -> u59

Converts to this type from the input type.
source§

impl From<u36> for u59

source§

fn from(x: u36) -> u59

Converts to this type from the input type.
source§

impl From<u37> for u59

source§

fn from(x: u37) -> u59

Converts to this type from the input type.
source§

impl From<u38> for u59

source§

fn from(x: u38) -> u59

Converts to this type from the input type.
source§

impl From<u39> for u59

source§

fn from(x: u39) -> u59

Converts to this type from the input type.
source§

impl From<u4> for u59

source§

fn from(x: u4) -> u59

Converts to this type from the input type.
source§

impl From<u40> for u59

source§

fn from(x: u40) -> u59

Converts to this type from the input type.
source§

impl From<u41> for u59

source§

fn from(x: u41) -> u59

Converts to this type from the input type.
source§

impl From<u42> for u59

source§

fn from(x: u42) -> u59

Converts to this type from the input type.
source§

impl From<u43> for u59

source§

fn from(x: u43) -> u59

Converts to this type from the input type.
source§

impl From<u44> for u59

source§

fn from(x: u44) -> u59

Converts to this type from the input type.
source§

impl From<u45> for u59

source§

fn from(x: u45) -> u59

Converts to this type from the input type.
source§

impl From<u46> for u59

source§

fn from(x: u46) -> u59

Converts to this type from the input type.
source§

impl From<u47> for u59

source§

fn from(x: u47) -> u59

Converts to this type from the input type.
source§

impl From<u48> for u59

source§

fn from(x: u48) -> u59

Converts to this type from the input type.
source§

impl From<u49> for u59

source§

fn from(x: u49) -> u59

Converts to this type from the input type.
source§

impl From<u5> for u59

source§

fn from(x: u5) -> u59

Converts to this type from the input type.
source§

impl From<u50> for u59

source§

fn from(x: u50) -> u59

Converts to this type from the input type.
source§

impl From<u51> for u59

source§

fn from(x: u51) -> u59

Converts to this type from the input type.
source§

impl From<u52> for u59

source§

fn from(x: u52) -> u59

Converts to this type from the input type.
source§

impl From<u53> for u59

source§

fn from(x: u53) -> u59

Converts to this type from the input type.
source§

impl From<u54> for u59

source§

fn from(x: u54) -> u59

Converts to this type from the input type.
source§

impl From<u55> for u59

source§

fn from(x: u55) -> u59

Converts to this type from the input type.
source§

impl From<u56> for u59

source§

fn from(x: u56) -> u59

Converts to this type from the input type.
source§

impl From<u57> for u59

source§

fn from(x: u57) -> u59

Converts to this type from the input type.
source§

impl From<u58> for u59

source§

fn from(x: u58) -> u59

Converts to this type from the input type.
source§

impl From<u59> for i100

source§

fn from(x: u59) -> i100

Converts to this type from the input type.
source§

impl From<u59> for i101

source§

fn from(x: u59) -> i101

Converts to this type from the input type.
source§

impl From<u59> for i102

source§

fn from(x: u59) -> i102

Converts to this type from the input type.
source§

impl From<u59> for i103

source§

fn from(x: u59) -> i103

Converts to this type from the input type.
source§

impl From<u59> for i104

source§

fn from(x: u59) -> i104

Converts to this type from the input type.
source§

impl From<u59> for i105

source§

fn from(x: u59) -> i105

Converts to this type from the input type.
source§

impl From<u59> for i106

source§

fn from(x: u59) -> i106

Converts to this type from the input type.
source§

impl From<u59> for i107

source§

fn from(x: u59) -> i107

Converts to this type from the input type.
source§

impl From<u59> for i108

source§

fn from(x: u59) -> i108

Converts to this type from the input type.
source§

impl From<u59> for i109

source§

fn from(x: u59) -> i109

Converts to this type from the input type.
source§

impl From<u59> for i110

source§

fn from(x: u59) -> i110

Converts to this type from the input type.
source§

impl From<u59> for i111

source§

fn from(x: u59) -> i111

Converts to this type from the input type.
source§

impl From<u59> for i112

source§

fn from(x: u59) -> i112

Converts to this type from the input type.
source§

impl From<u59> for i113

source§

fn from(x: u59) -> i113

Converts to this type from the input type.
source§

impl From<u59> for i114

source§

fn from(x: u59) -> i114

Converts to this type from the input type.
source§

impl From<u59> for i115

source§

fn from(x: u59) -> i115

Converts to this type from the input type.
source§

impl From<u59> for i116

source§

fn from(x: u59) -> i116

Converts to this type from the input type.
source§

impl From<u59> for i117

source§

fn from(x: u59) -> i117

Converts to this type from the input type.
source§

impl From<u59> for i118

source§

fn from(x: u59) -> i118

Converts to this type from the input type.
source§

impl From<u59> for i119

source§

fn from(x: u59) -> i119

Converts to this type from the input type.
source§

impl From<u59> for i120

source§

fn from(x: u59) -> i120

Converts to this type from the input type.
source§

impl From<u59> for i121

source§

fn from(x: u59) -> i121

Converts to this type from the input type.
source§

impl From<u59> for i122

source§

fn from(x: u59) -> i122

Converts to this type from the input type.
source§

impl From<u59> for i123

source§

fn from(x: u59) -> i123

Converts to this type from the input type.
source§

impl From<u59> for i124

source§

fn from(x: u59) -> i124

Converts to this type from the input type.
source§

impl From<u59> for i125

source§

fn from(x: u59) -> i125

Converts to this type from the input type.
source§

impl From<u59> for i126

source§

fn from(x: u59) -> i126

Converts to this type from the input type.
source§

impl From<u59> for i127

source§

fn from(x: u59) -> i127

Converts to this type from the input type.
source§

impl From<u59> for i60

source§

fn from(x: u59) -> i60

Converts to this type from the input type.
source§

impl From<u59> for i61

source§

fn from(x: u59) -> i61

Converts to this type from the input type.
source§

impl From<u59> for i62

source§

fn from(x: u59) -> i62

Converts to this type from the input type.
source§

impl From<u59> for i63

source§

fn from(x: u59) -> i63

Converts to this type from the input type.
source§

impl From<u59> for i65

source§

fn from(x: u59) -> i65

Converts to this type from the input type.
source§

impl From<u59> for i66

source§

fn from(x: u59) -> i66

Converts to this type from the input type.
source§

impl From<u59> for i67

source§

fn from(x: u59) -> i67

Converts to this type from the input type.
source§

impl From<u59> for i68

source§

fn from(x: u59) -> i68

Converts to this type from the input type.
source§

impl From<u59> for i69

source§

fn from(x: u59) -> i69

Converts to this type from the input type.
source§

impl From<u59> for i70

source§

fn from(x: u59) -> i70

Converts to this type from the input type.
source§

impl From<u59> for i71

source§

fn from(x: u59) -> i71

Converts to this type from the input type.
source§

impl From<u59> for i72

source§

fn from(x: u59) -> i72

Converts to this type from the input type.
source§

impl From<u59> for i73

source§

fn from(x: u59) -> i73

Converts to this type from the input type.
source§

impl From<u59> for i74

source§

fn from(x: u59) -> i74

Converts to this type from the input type.
source§

impl From<u59> for i75

source§

fn from(x: u59) -> i75

Converts to this type from the input type.
source§

impl From<u59> for i76

source§

fn from(x: u59) -> i76

Converts to this type from the input type.
source§

impl From<u59> for i77

source§

fn from(x: u59) -> i77

Converts to this type from the input type.
source§

impl From<u59> for i78

source§

fn from(x: u59) -> i78

Converts to this type from the input type.
source§

impl From<u59> for i79

source§

fn from(x: u59) -> i79

Converts to this type from the input type.
source§

impl From<u59> for i80

source§

fn from(x: u59) -> i80

Converts to this type from the input type.
source§

impl From<u59> for i81

source§

fn from(x: u59) -> i81

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<u59> for i83

source§

fn from(x: u59) -> i83

Converts to this type from the input type.
source§

impl From<u59> for i84

source§

fn from(x: u59) -> i84

Converts to this type from the input type.
source§

impl From<u59> for i85

source§

fn from(x: u59) -> i85

Converts to this type from the input type.
source§

impl From<u59> for i86

source§

fn from(x: u59) -> i86

Converts to this type from the input type.
source§

impl From<u59> for i87

source§

fn from(x: u59) -> i87

Converts to this type from the input type.
source§

impl From<u59> for i88

source§

fn from(x: u59) -> i88

Converts to this type from the input type.
source§

impl From<u59> for i89

source§

fn from(x: u59) -> i89

Converts to this type from the input type.
source§

impl From<u59> for i90

source§

fn from(x: u59) -> i90

Converts to this type from the input type.
source§

impl From<u59> for i91

source§

fn from(x: u59) -> i91

Converts to this type from the input type.
source§

impl From<u59> for i92

source§

fn from(x: u59) -> i92

Converts to this type from the input type.
source§

impl From<u59> for i93

source§

fn from(x: u59) -> i93

Converts to this type from the input type.
source§

impl From<u59> for i94

source§

fn from(x: u59) -> i94

Converts to this type from the input type.
source§

impl From<u59> for i95

source§

fn from(x: u59) -> i95

Converts to this type from the input type.
source§

impl From<u59> for i96

source§

fn from(x: u59) -> i96

Converts to this type from the input type.
source§

impl From<u59> for i97

source§

fn from(x: u59) -> i97

Converts to this type from the input type.
source§

impl From<u59> for i98

source§

fn from(x: u59) -> i98

Converts to this type from the input type.
source§

impl From<u59> for i99

source§

fn from(x: u59) -> i99

Converts to this type from the input type.
source§

impl From<u59> for u100

source§

fn from(x: u59) -> u100

Converts to this type from the input type.
source§

impl From<u59> for u101

source§

fn from(x: u59) -> u101

Converts to this type from the input type.
source§

impl From<u59> for u102

source§

fn from(x: u59) -> u102

Converts to this type from the input type.
source§

impl From<u59> for u103

source§

fn from(x: u59) -> u103

Converts to this type from the input type.
source§

impl From<u59> for u104

source§

fn from(x: u59) -> u104

Converts to this type from the input type.
source§

impl From<u59> for u105

source§

fn from(x: u59) -> u105

Converts to this type from the input type.
source§

impl From<u59> for u106

source§

fn from(x: u59) -> u106

Converts to this type from the input type.
source§

impl From<u59> for u107

source§

fn from(x: u59) -> u107

Converts to this type from the input type.
source§

impl From<u59> for u108

source§

fn from(x: u59) -> u108

Converts to this type from the input type.
source§

impl From<u59> for u109

source§

fn from(x: u59) -> u109

Converts to this type from the input type.
source§

impl From<u59> for u110

source§

fn from(x: u59) -> u110

Converts to this type from the input type.
source§

impl From<u59> for u111

source§

fn from(x: u59) -> u111

Converts to this type from the input type.
source§

impl From<u59> for u112

source§

fn from(x: u59) -> u112

Converts to this type from the input type.
source§

impl From<u59> for u113

source§

fn from(x: u59) -> u113

Converts to this type from the input type.
source§

impl From<u59> for u114

source§

fn from(x: u59) -> u114

Converts to this type from the input type.
source§

impl From<u59> for u115

source§

fn from(x: u59) -> u115

Converts to this type from the input type.
source§

impl From<u59> for u116

source§

fn from(x: u59) -> u116

Converts to this type from the input type.
source§

impl From<u59> for u117

source§

fn from(x: u59) -> u117

Converts to this type from the input type.
source§

impl From<u59> for u118

source§

fn from(x: u59) -> u118

Converts to this type from the input type.
source§

impl From<u59> for u119

source§

fn from(x: u59) -> u119

Converts to this type from the input type.
source§

impl From<u59> for u120

source§

fn from(x: u59) -> u120

Converts to this type from the input type.
source§

impl From<u59> for u121

source§

fn from(x: u59) -> u121

Converts to this type from the input type.
source§

impl From<u59> for u122

source§

fn from(x: u59) -> u122

Converts to this type from the input type.
source§

impl From<u59> for u123

source§

fn from(x: u59) -> u123

Converts to this type from the input type.
source§

impl From<u59> for u124

source§

fn from(x: u59) -> u124

Converts to this type from the input type.
source§

impl From<u59> for u125

source§

fn from(x: u59) -> u125

Converts to this type from the input type.
source§

impl From<u59> for u126

source§

fn from(x: u59) -> u126

Converts to this type from the input type.
source§

impl From<u59> for u127

source§

fn from(x: u59) -> u127

Converts to this type from the input type.
source§

impl From<u59> for u60

source§

fn from(x: u59) -> u60

Converts to this type from the input type.
source§

impl From<u59> for u61

source§

fn from(x: u59) -> u61

Converts to this type from the input type.
source§

impl From<u59> for u62

source§

fn from(x: u59) -> u62

Converts to this type from the input type.
source§

impl From<u59> for u63

source§

fn from(x: u59) -> u63

Converts to this type from the input type.
source§

impl From<u59> for u65

source§

fn from(x: u59) -> u65

Converts to this type from the input type.
source§

impl From<u59> for u66

source§

fn from(x: u59) -> u66

Converts to this type from the input type.
source§

impl From<u59> for u67

source§

fn from(x: u59) -> u67

Converts to this type from the input type.
source§

impl From<u59> for u68

source§

fn from(x: u59) -> u68

Converts to this type from the input type.
source§

impl From<u59> for u69

source§

fn from(x: u59) -> u69

Converts to this type from the input type.
source§

impl From<u59> for u70

source§

fn from(x: u59) -> u70

Converts to this type from the input type.
source§

impl From<u59> for u71

source§

fn from(x: u59) -> u71

Converts to this type from the input type.
source§

impl From<u59> for u72

source§

fn from(x: u59) -> u72

Converts to this type from the input type.
source§

impl From<u59> for u73

source§

fn from(x: u59) -> u73

Converts to this type from the input type.
source§

impl From<u59> for u74

source§

fn from(x: u59) -> u74

Converts to this type from the input type.
source§

impl From<u59> for u75

source§

fn from(x: u59) -> u75

Converts to this type from the input type.
source§

impl From<u59> for u76

source§

fn from(x: u59) -> u76

Converts to this type from the input type.
source§

impl From<u59> for u77

source§

fn from(x: u59) -> u77

Converts to this type from the input type.
source§

impl From<u59> for u78

source§

fn from(x: u59) -> u78

Converts to this type from the input type.
source§

impl From<u59> for u79

source§

fn from(x: u59) -> u79

Converts to this type from the input type.
source§

impl From<u59> for u80

source§

fn from(x: u59) -> u80

Converts to this type from the input type.
source§

impl From<u59> for u81

source§

fn from(x: u59) -> u81

Converts to this type from the input type.
source§

impl From<u59> for u82

source§

fn from(x: u59) -> u82

Converts to this type from the input type.
source§

impl From<u59> for u83

source§

fn from(x: u59) -> u83

Converts to this type from the input type.
source§

impl From<u59> for u84

source§

fn from(x: u59) -> u84

Converts to this type from the input type.
source§

impl From<u59> for u85

source§

fn from(x: u59) -> u85

Converts to this type from the input type.
source§

impl From<u59> for u86

source§

fn from(x: u59) -> u86

Converts to this type from the input type.
source§

impl From<u59> for u87

source§

fn from(x: u59) -> u87

Converts to this type from the input type.
source§

impl From<u59> for u88

source§

fn from(x: u59) -> u88

Converts to this type from the input type.
source§

impl From<u59> for u89

source§

fn from(x: u59) -> u89

Converts to this type from the input type.
source§

impl From<u59> for u90

source§

fn from(x: u59) -> u90

Converts to this type from the input type.
source§

impl From<u59> for u91

source§

fn from(x: u59) -> u91

Converts to this type from the input type.
source§

impl From<u59> for u92

source§

fn from(x: u59) -> u92

Converts to this type from the input type.
source§

impl From<u59> for u93

source§

fn from(x: u59) -> u93

Converts to this type from the input type.
source§

impl From<u59> for u94

source§

fn from(x: u59) -> u94

Converts to this type from the input type.
source§

impl From<u59> for u95

source§

fn from(x: u59) -> u95

Converts to this type from the input type.
source§

impl From<u59> for u96

source§

fn from(x: u59) -> u96

Converts to this type from the input type.
source§

impl From<u59> for u97

source§

fn from(x: u59) -> u97

Converts to this type from the input type.
source§

impl From<u59> for u98

source§

fn from(x: u59) -> u98

Converts to this type from the input type.
source§

impl From<u59> for u99

source§

fn from(x: u59) -> u99

Converts to this type from the input type.
source§

impl From<u6> for u59

source§

fn from(x: u6) -> u59

Converts to this type from the input type.
source§

impl From<u7> for u59

source§

fn from(x: u7) -> u59

Converts to this type from the input type.
source§

impl From<u8> for u59

source§

fn from(x: u8) -> u59

Converts to this type from the input type.
source§

impl From<u9> for u59

source§

fn from(x: u9) -> u59

Converts to this type from the input type.
source§

impl Hash for u59

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 u59

source§

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

Formats the value using the given formatter.
source§

impl Mul<&u59> for &u59

§

type Output = u59

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<&u59> for u59

§

type Output = u59

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

type Output = u59

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u59> for u59

§

type Output = u59

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Not for &u59

§

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

§

type Output = u59

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Num for u59

Available on crate feature num-traits only.
§

type FromStrRadixErr = ParseIntError

source§

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

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

impl Octal for u59

source§

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

Formats the value using the given formatter.
source§

impl One for u59

Available on crate feature num-traits only.
source§

fn one() -> Self

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

fn set_one(&mut self)

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

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

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

impl Ord for u59

source§

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

source§

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

source§

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

§

type Output = u59

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<&u59> for u59

§

type Output = u59

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

type Output = u59

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<u59> for u59

§

type Output = u59

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Serialize for u59

source§

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

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

impl Sub<&u59> for &u59

§

type Output = u59

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<&u59> for u59

§

type Output = u59

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

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

§

type Output = u59

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<u59> for u59

§

type Output = u59

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl TryFrom<i1> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i10> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i100> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i101> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i102> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i103> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i104> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i105> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i106> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i107> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i108> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i109> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i11> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i110> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i111> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i112> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i113> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i114> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i115> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i116> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i117> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i118> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i119> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i12> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i120> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i121> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i122> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i123> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i124> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i125> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i126> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i127> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i128> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i13> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i14> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i15> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i16> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i17> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i18> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i19> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i2> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i20> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i21> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i22> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i23> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i24> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i25> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i26> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i27> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i28> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i29> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i3> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i30> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i31> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i32> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i33> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i34> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i35> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i36> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i37> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i38> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i39> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i4> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i40> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i41> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i42> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i43> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i44> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i45> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i46> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i47> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i48> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i49> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i5> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i50> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i51> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i52> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i53> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i54> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i55> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i56> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i57> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i58> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i59> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i6> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i60> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i61> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i62> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i63> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i64> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i65> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i66> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i67> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i68> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i69> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i7> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i70> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i71> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i72> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i73> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i74> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i75> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i76> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i77> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i78> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i79> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i8> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i80> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i81> for u59

§

type Error = TryFromIntError

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

fn try_from(x: i81) -> Result<u59, 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<i83> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i84> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i85> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i86> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i87> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i88> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i89> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i9> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i90> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i91> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i92> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i93> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i94> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i95> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i96> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i97> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i98> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<i99> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u100> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u101> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u102> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u103> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u104> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u105> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u106> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u107> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u108> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u109> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u110> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u111> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u112> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u113> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u114> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u115> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u116> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u117> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u118> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u119> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u120> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u121> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u122> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u123> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u124> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u125> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u126> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u127> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u128> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i1

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i10

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i11

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i12

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i13

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i14

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i15

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i17

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i18

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i19

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i2

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i20

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i21

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i22

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i23

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i24

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i25

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i26

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i27

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i28

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i29

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i30

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i31

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i33

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i34

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i35

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i36

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i37

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i38

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i39

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i4

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i40

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i41

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i42

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i43

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i44

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i45

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i46

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i47

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i48

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i49

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i5

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i50

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i51

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i52

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i53

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i54

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i55

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i56

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i57

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i58

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i6

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i7

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for i9

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u1

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u10

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u11

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u12

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u13

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u14

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u15

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u17

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u18

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u19

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u2

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u20

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u21

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u22

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u23

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u24

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u25

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u26

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u27

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u28

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u29

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u30

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u31

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u33

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u34

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u35

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u36

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u37

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u38

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u39

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u4

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u40

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u41

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u42

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u43

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u44

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u45

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u46

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u47

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u48

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u49

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u5

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u50

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u51

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u52

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u53

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u54

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u55

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u56

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u57

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u58

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u6

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u7

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u59> for u9

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u60> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u61> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u62> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u63> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u64> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u65> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u66> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u67> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u68> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u69> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u70> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u71> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u72> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u73> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u74> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u75> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u76> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u77> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u78> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u79> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u80> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u81> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u82> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u83> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u84> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u85> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u86> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u87> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u88> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u89> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u90> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u91> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u92> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u93> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u94> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u95> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u96> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u97> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u98> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<u99> for u59

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl UpperHex for u59

source§

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

Formats the value using the given formatter.
source§

impl Zero for u59

Available on crate feature num-traits only.
source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Copy for u59

source§

impl Eq for u59

source§

impl StructuralEq for u59

source§

impl StructuralPartialEq for u59

Auto Trait Implementations§

§

impl RefUnwindSafe for u59

§

impl Send for u59

§

impl Sync for u59

§

impl Unpin for u59

§

impl UnwindSafe for u59

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

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

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

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for Twhere T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

source§

impl<T> NumRef for Twhere T: Num + for<'r> NumOps<&'r T, T>,

source§

impl<T, Base> RefNum<Base> for Twhere T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,