Struct scrypto::math::I768

source ·
#[repr(transparent)]
pub struct I768(pub BInt<12>);
Expand description

Provides safe integer arithmetic.

Operations like +, ‘-’, ‘*’, or ‘/’ sometimes produce overflow which is detected and results in a panic, in of silently wrapping around.

The bit length of output type will be the greater one in the math operation, and if any of the types was signed, then the resulting type will be signed too, otherwise the output type is unsigned.

The underlying value can be retrieved through the .0 index of the I768 tuple.

Layout

I768 will have the same methods and traits as the built-in counterpart.

Tuple Fields§

§0: BInt<12>

Implementations§

source§

impl I768

source

pub const fn count_ones(self) -> u32

Returns the number of ones in the binary representation of self.

source

pub const fn count_zeros(self) -> u32

Returns the number of zeros in the binary representation of self.

source

pub const fn trailing_zeros(self) -> u32

Returns the number of trailing zeros in the binary representation of self.

source

pub const fn swap_bytes(self) -> I768

Reverses the byte order of the integer.

source

pub const fn reverse_bits(self) -> I768

Reverses the bit pattern of the integer.

source

pub const fn leading_zeros(self) -> u32

Returns the number of leading zeros in the binary representation of self.

source

pub const fn from_be(x: I768) -> I768

Converts an integer from big endian to the target’s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

source

pub const fn from_le(x: I768) -> I768

Converts an integer from little endian to the target’s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

source

pub const fn to_be(self) -> I768

Converts self to big endian from the target’s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

source

pub const fn to_le(self) -> I768

Converts self to little endian from the target’s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

source§

impl I768

source

pub fn from_le_bytes(bytes: &[u8]) -> I768

source§

impl I768

source

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

source§

impl I768

source

pub const fn from_digits(digits: [u64; 12]) -> I768

source

pub const fn to_digits(&self) -> [u64; 12]

source§

impl I768

source

pub const MIN: I768 = Self(BInt<12>::MIN)

source

pub const MAX: I768 = Self(BInt<12>::MAX)

source

pub const ZERO: I768 = Self(BInt<12>::ZERO)

source

pub const ONE: I768 = Self(BInt<12>::ONE)

source

pub const TEN: I768 = Self(BInt<12>::TEN)

source

pub const BITS: u32 = 768u32

source

pub const BYTES: u32 = 96u32

source

pub const N: usize = 12usize

source§

impl I768

source

pub fn abs(self) -> I768

Computes the absolute value of self, with overflow causing panic.

The only case where such overflow can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function panics.

source

pub fn signum(self) -> I768

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
source

pub fn is_positive(self) -> bool

Returns true if self is positive and false if the number is zero or negative.

source

pub fn is_negative(self) -> bool

Returns true if self is negative and false if the number is zero or positive.

Trait Implementations§

source§

impl Add<&I768> for &I768

§

type Output = <I768 as Add<I768>>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &I768) -> <I768 as Add<I768>>::Output

Performs the + operation. Read more
source§

impl Add<&I768> for I768

§

type Output = <I768 as Add<I768>>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &I768) -> <I768 as Add<I768>>::Output

Performs the + operation. Read more
source§

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

§

type Output = <I768 as Add<I768>>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: I768) -> <I768 as Add<I768>>::Output

Performs the + operation. Read more
source§

impl Add<I768> for I768

§

type Output = I768

The resulting type after applying the + operator.
source§

fn add(self, other: I768) -> I768

Performs the + operation. Read more
source§

impl AddAssign<&I768> for I768

source§

fn add_assign(&mut self, other: &I768)

Performs the += operation. Read more
source§

impl AddAssign<I768> for I768

source§

fn add_assign(&mut self, other: I768)

Performs the += operation. Read more
source§

impl BitAnd<I768> for I768

§

type Output = I768

The resulting type after applying the & operator.
source§

fn bitand(self, other: I768) -> I768

Performs the & operation. Read more
source§

impl BitAndAssign<I768> for I768

source§

fn bitand_assign(&mut self, other: I768)

Performs the &= operation. Read more
source§

impl BitOr<I768> for I768

§

type Output = I768

The resulting type after applying the | operator.
source§

fn bitor(self, other: I768) -> I768

Performs the | operation. Read more
source§

impl BitOrAssign<I768> for I768

source§

fn bitor_assign(&mut self, other: I768)

Performs the |= operation. Read more
source§

impl BitXor<I768> for I768

§

type Output = I768

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: I768) -> I768

Performs the ^ operation. Read more
source§

impl BitXorAssign<I768> for I768

source§

fn bitxor_assign(&mut self, other: I768)

Performs the ^= operation. Read more
source§

impl Cbrt for I768

source§

fn cbrt(self) -> I768

source§

impl CheckedAdd<I768> for I768

source§

impl CheckedDiv<I768> for I768

source§

impl CheckedMul<I768> for I768

source§

impl CheckedNeg<I768> for I768

source§

impl CheckedSub<I768> for I768

source§

impl Clone for I768

source§

fn clone(&self) -> I768

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 I768

source§

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

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

impl Default for I768

source§

fn default() -> I768

Returns the “default value” for a type. Read more
source§

impl Display for I768

source§

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

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

impl Div<&I768> for &I768

§

type Output = <I768 as Div<I768>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &I768) -> <I768 as Div<I768>>::Output

Performs the / operation. Read more
source§

impl Div<&I768> for I768

§

type Output = <I768 as Div<I768>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &I768) -> <I768 as Div<I768>>::Output

Performs the / operation. Read more
source§

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

§

type Output = <I768 as Div<I768>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: I768) -> <I768 as Div<I768>>::Output

Performs the / operation. Read more
source§

impl Div<I768> for I768

§

type Output = I768

The resulting type after applying the / operator.
source§

fn div(self, other: I768) -> I768

Performs the / operation. Read more
source§

impl DivAssign<&I768> for I768

source§

fn div_assign(&mut self, other: &I768)

Performs the /= operation. Read more
source§

impl DivAssign<I768> for I768

source§

fn div_assign(&mut self, other: I768)

Performs the /= operation. Read more
source§

impl From<I192> for I768

source§

fn from(val: I192) -> I768

Converts to this type from the input type.
source§

impl From<I256> for I768

source§

fn from(val: I256) -> I768

Converts to this type from the input type.
source§

impl From<I320> for I768

source§

fn from(val: I320) -> I768

Converts to this type from the input type.
source§

impl From<I384> for I768

source§

fn from(val: I384) -> I768

Converts to this type from the input type.
source§

impl From<I448> for I768

source§

fn from(val: I448) -> I768

Converts to this type from the input type.
source§

impl From<I512> for I768

source§

fn from(val: I512) -> I768

Converts to this type from the input type.
source§

impl From<I768> for BigInt

source§

fn from(val: I768) -> BigInt

Converts to this type from the input type.
source§

impl From<U192> for I768

source§

fn from(val: U192) -> I768

Converts to this type from the input type.
source§

impl From<U256> for I768

source§

fn from(val: U256) -> I768

Converts to this type from the input type.
source§

impl From<U320> for I768

source§

fn from(val: U320) -> I768

Converts to this type from the input type.
source§

impl From<U384> for I768

source§

fn from(val: U384) -> I768

Converts to this type from the input type.
source§

impl From<U448> for I768

source§

fn from(val: U448) -> I768

Converts to this type from the input type.
source§

impl From<U512> for I768

source§

fn from(val: U512) -> I768

Converts to this type from the input type.
source§

impl From<i128> for I768

source§

fn from(val: i128) -> I768

Converts to this type from the input type.
source§

impl From<i16> for I768

source§

fn from(val: i16) -> I768

Converts to this type from the input type.
source§

impl From<i32> for I768

source§

fn from(val: i32) -> I768

Converts to this type from the input type.
source§

impl From<i64> for I768

source§

fn from(val: i64) -> I768

Converts to this type from the input type.
source§

impl From<i8> for I768

source§

fn from(val: i8) -> I768

Converts to this type from the input type.
source§

impl From<isize> for I768

source§

fn from(val: isize) -> I768

Converts to this type from the input type.
source§

impl From<u128> for I768

source§

fn from(val: u128) -> I768

Converts to this type from the input type.
source§

impl From<u16> for I768

source§

fn from(val: u16) -> I768

Converts to this type from the input type.
source§

impl From<u32> for I768

source§

fn from(val: u32) -> I768

Converts to this type from the input type.
source§

impl From<u64> for I768

source§

fn from(val: u64) -> I768

Converts to this type from the input type.
source§

impl From<u8> for I768

source§

fn from(val: u8) -> I768

Converts to this type from the input type.
source§

impl From<usize> for I768

source§

fn from(val: usize) -> I768

Converts to this type from the input type.
source§

impl FromPrimitive for I768

source§

fn from_u8(n: u8) -> Option<I768>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<I768>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<I768>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<I768>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u128(n: u128) -> Option<I768>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_usize(n: usize) -> Option<I768>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<I768>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<I768>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<I768>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i64(n: i64) -> Option<I768>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i128(n: i128) -> Option<I768>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_isize(n: isize) -> Option<I768>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromStr for I768

§

type Err = ParseI768Error

The associated error which can be returned from parsing.
source§

fn from_str(val: &str) -> Result<I768, <I768 as FromStr>::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for I768

source§

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

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 Mul<&I768> for &I768

§

type Output = <I768 as Mul<I768>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &I768) -> <I768 as Mul<I768>>::Output

Performs the * operation. Read more
source§

impl Mul<&I768> for I768

§

type Output = <I768 as Mul<I768>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &I768) -> <I768 as Mul<I768>>::Output

Performs the * operation. Read more
source§

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

§

type Output = <I768 as Mul<I768>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: I768) -> <I768 as Mul<I768>>::Output

Performs the * operation. Read more
source§

impl Mul<I768> for I768

§

type Output = I768

The resulting type after applying the * operator.
source§

fn mul(self, other: I768) -> I768

Performs the * operation. Read more
source§

impl MulAssign<&I768> for I768

source§

fn mul_assign(&mut self, other: &I768)

Performs the *= operation. Read more
source§

impl MulAssign<I768> for I768

source§

fn mul_assign(&mut self, other: I768)

Performs the *= operation. Read more
source§

impl Neg for I768

§

type Output = I768

The resulting type after applying the - operator.
source§

fn neg(self) -> I768

Performs the unary - operation. Read more
source§

impl Not for &I768

§

type Output = <I768 as Not>::Output

The resulting type after applying the ! operator.
source§

fn not(self) -> <I768 as Not>::Output

Performs the unary ! operation. Read more
source§

impl Not for I768

§

type Output = I768

The resulting type after applying the ! operator.
source§

fn not(self) -> I768

Performs the unary ! operation. Read more
source§

impl NthRoot for I768

source§

fn nth_root(self, n: u32) -> I768

source§

impl One for I768

source§

fn one() -> I768

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 I768

source§

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

source§

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

source§

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

source§

fn pow(self, exp: u32) -> I768

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

§

type Output = I768

The result after applying the operator.
source§

impl Rem<&I768> for &I768

§

type Output = <I768 as Rem<I768>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &I768) -> <I768 as Rem<I768>>::Output

Performs the % operation. Read more
source§

impl Rem<&I768> for I768

§

type Output = <I768 as Rem<I768>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &I768) -> <I768 as Rem<I768>>::Output

Performs the % operation. Read more
source§

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

§

type Output = <I768 as Rem<I768>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: I768) -> <I768 as Rem<I768>>::Output

Performs the % operation. Read more
source§

impl Rem<I768> for I768

§

type Output = I768

The resulting type after applying the % operator.
source§

fn rem(self, other: I768) -> I768

Performs the % operation. Read more
source§

impl RemAssign<&I768> for I768

source§

fn rem_assign(&mut self, other: &I768)

Performs the %= operation. Read more
source§

impl RemAssign<I768> for I768

source§

fn rem_assign(&mut self, other: I768)

Performs the %= operation. Read more
source§

impl Shl<u32> for I768

§

type Output = I768

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> I768

Performs the << operation. Read more
source§

impl ShlAssign<u32> for I768

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
source§

impl Shr<u32> for I768

§

type Output = I768

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> I768

Performs the >> operation. Read more
source§

impl ShrAssign<u32> for I768

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
source§

impl Sqrt for I768

source§

fn sqrt(self) -> I768

source§

impl Sub<&I768> for &I768

§

type Output = <I768 as Sub<I768>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &I768) -> <I768 as Sub<I768>>::Output

Performs the - operation. Read more
source§

impl Sub<&I768> for I768

§

type Output = <I768 as Sub<I768>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &I768) -> <I768 as Sub<I768>>::Output

Performs the - operation. Read more
source§

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

§

type Output = <I768 as Sub<I768>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: I768) -> <I768 as Sub<I768>>::Output

Performs the - operation. Read more
source§

impl Sub<I768> for I768

§

type Output = I768

The resulting type after applying the - operator.
source§

fn sub(self, other: I768) -> I768

Performs the - operation. Read more
source§

impl SubAssign<&I768> for I768

source§

fn sub_assign(&mut self, other: &I768)

Performs the -= operation. Read more
source§

impl SubAssign<I768> for I768

source§

fn sub_assign(&mut self, other: I768)

Performs the -= operation. Read more
source§

impl ToPrimitive for I768

source§

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
source§

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
source§

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
source§

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
source§

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
source§

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
source§

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
source§

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
source§

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
source§

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
source§

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
source§

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
source§

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
source§

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
source§

impl TryFrom<&[u8]> for I768

§

type Error = ParseI768Error

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

fn try_from(bytes: &[u8]) -> Result<I768, <I768 as TryFrom<&[u8]>>::Error>

Performs the conversion.
source§

impl TryFrom<BigInt> for I768

§

type Error = ParseI768Error

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

fn try_from(val: BigInt) -> Result<I768, <I768 as TryFrom<BigInt>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for I192

§

type Error = ParseI192Error

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

fn try_from(val: I768) -> Result<I192, <I192 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for I256

§

type Error = ParseI256Error

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

fn try_from(val: I768) -> Result<I256, <I256 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for I320

§

type Error = ParseI320Error

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

fn try_from(val: I768) -> Result<I320, <I320 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for I384

§

type Error = ParseI384Error

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

fn try_from(val: I768) -> Result<I384, <I384 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for I448

§

type Error = ParseI448Error

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

fn try_from(val: I768) -> Result<I448, <I448 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for I512

§

type Error = ParseI512Error

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

fn try_from(val: I768) -> Result<I512, <I512 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U192

§

type Error = ParseU192Error

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

fn try_from(val: I768) -> Result<U192, <U192 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U256

§

type Error = ParseU256Error

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

fn try_from(val: I768) -> Result<U256, <U256 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U320

§

type Error = ParseU320Error

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

fn try_from(val: I768) -> Result<U320, <U320 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U384

§

type Error = ParseU384Error

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

fn try_from(val: I768) -> Result<U384, <U384 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U448

§

type Error = ParseU448Error

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

fn try_from(val: I768) -> Result<U448, <U448 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U512

§

type Error = ParseU512Error

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

fn try_from(val: I768) -> Result<U512, <U512 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for U768

§

type Error = ParseU768Error

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

fn try_from(val: I768) -> Result<U768, <U768 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for i128

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<i128, <i128 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for i16

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<i16, <i16 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for i32

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<i32, <i32 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for i64

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<i64, <i64 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for i8

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<i8, <i8 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for isize

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<isize, <isize as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for u128

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<u128, <u128 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for u16

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<u16, <u16 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for u32

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<u32, <u32 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for u64

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<u64, <u64 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for u8

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<u8, <u8 as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<I768> for usize

§

type Error = ParseI768Error

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

fn try_from(val: I768) -> Result<usize, <usize as TryFrom<I768>>::Error>

Performs the conversion.
source§

impl TryFrom<U768> for I768

§

type Error = ParseI768Error

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

fn try_from(val: U768) -> Result<I768, <I768 as TryFrom<U768>>::Error>

Performs the conversion.
source§

impl TryFrom<Vec<u8, Global>> for I768

§

type Error = ParseI768Error

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

fn try_from( bytes: Vec<u8, Global> ) -> Result<I768, <I768 as TryFrom<Vec<u8, Global>>>::Error>

Performs the conversion.
source§

impl Zero for I768

source§

fn zero() -> I768

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 I768

source§

impl Eq for I768

Auto Trait Implementations§

§

impl RefUnwindSafe for I768

§

impl Send for I768

§

impl Sync for I768

§

impl Unpin for I768

§

impl UnwindSafe for I768

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<U> As for U

§

fn as_<T>(self) -> Twhere T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. 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<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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> Same<T> for T

§

type Output = T

Should always be Self
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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T, Rhs> NumAssignOps<Rhs> for Twhere T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

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, Base> RefNum<Base> for Twhere T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,