Struct scrypto::prelude::I384

source ·
#[repr(transparent)]
pub struct I384(pub BInt<6>);
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 I384 tuple.

Layout

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

Tuple Fields§

§0: BInt<6>

Implementations§

source§

impl I384

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) -> I384

Reverses the byte order of the integer.

source

pub const fn reverse_bits(self) -> I384

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: I384) -> I384

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: I384) -> I384

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) -> I384

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) -> I384

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 I384

source

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

source§

impl I384

source

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

source§

impl I384

source

pub const fn from_digits(digits: [u64; 6]) -> I384

source

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

source§

impl I384

source

pub const MIN: I384 = Self(BInt<6>::MIN)

source

pub const MAX: I384 = Self(BInt<6>::MAX)

source

pub const ZERO: I384 = Self(BInt<6>::ZERO)

source

pub const ONE: I384 = Self(BInt<6>::ONE)

source

pub const TEN: I384 = Self(BInt<6>::TEN)

source

pub const BITS: u32 = 384u32

source

pub const BYTES: u32 = 48u32

source

pub const N: usize = 6usize

source§

impl I384

source

pub fn abs(self) -> I384

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) -> I384

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<&I384> for &I384

§

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

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<&I384> for I384

§

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

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

§

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

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<I384> for I384

§

type Output = I384

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<&I384> for I384

source§

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

Performs the += operation. Read more
source§

impl AddAssign<I384> for I384

source§

fn add_assign(&mut self, other: I384)

Performs the += operation. Read more
source§

impl BitAnd<I384> for I384

§

type Output = I384

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAndAssign<I384> for I384

source§

fn bitand_assign(&mut self, other: I384)

Performs the &= operation. Read more
source§

impl BitOr<I384> for I384

§

type Output = I384

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOrAssign<I384> for I384

source§

fn bitor_assign(&mut self, other: I384)

Performs the |= operation. Read more
source§

impl BitXor<I384> for I384

§

type Output = I384

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXorAssign<I384> for I384

source§

fn bitxor_assign(&mut self, other: I384)

Performs the ^= operation. Read more
source§

impl Cbrt for I384

source§

fn cbrt(self) -> I384

source§

impl CheckedAdd<I384> for I384

source§

impl CheckedDiv<I384> for I384

source§

impl CheckedMul<I384> for I384

source§

impl CheckedNeg<I384> for I384

source§

impl CheckedSub<I384> for I384

source§

impl Clone for I384

source§

fn clone(&self) -> I384

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 I384

source§

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

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

impl Default for I384

source§

fn default() -> I384

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

impl Display for I384

source§

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

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

impl Div<&I384> for &I384

§

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

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<&I384> for I384

§

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

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

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

§

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

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<I384> for I384

§

type Output = I384

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<&I384> for I384

source§

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

Performs the /= operation. Read more
source§

impl DivAssign<I384> for I384

source§

fn div_assign(&mut self, other: I384)

Performs the /= operation. Read more
source§

impl From<I192> for I384

source§

fn from(val: I192) -> I384

Converts to this type from the input type.
source§

impl From<I256> for I384

source§

fn from(val: I256) -> I384

Converts to this type from the input type.
source§

impl From<I320> for I384

source§

fn from(val: I320) -> I384

Converts to this type from the input type.
source§

impl From<I384> for BigInt

source§

fn from(val: I384) -> BigInt

Converts to this type from the input type.
source§

impl From<I384> for I448

source§

fn from(val: I384) -> I448

Converts to this type from the input type.
source§

impl From<I384> for I512

source§

fn from(val: I384) -> I512

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<U192> for I384

source§

fn from(val: U192) -> I384

Converts to this type from the input type.
source§

impl From<U256> for I384

source§

fn from(val: U256) -> I384

Converts to this type from the input type.
source§

impl From<U320> for I384

source§

fn from(val: U320) -> I384

Converts to this type from the input type.
source§

impl From<i128> for I384

source§

fn from(val: i128) -> I384

Converts to this type from the input type.
source§

impl From<i16> for I384

source§

fn from(val: i16) -> I384

Converts to this type from the input type.
source§

impl From<i32> for I384

source§

fn from(val: i32) -> I384

Converts to this type from the input type.
source§

impl From<i64> for I384

source§

fn from(val: i64) -> I384

Converts to this type from the input type.
source§

impl From<i8> for I384

source§

fn from(val: i8) -> I384

Converts to this type from the input type.
source§

impl From<isize> for I384

source§

fn from(val: isize) -> I384

Converts to this type from the input type.
source§

impl From<u128> for I384

source§

fn from(val: u128) -> I384

Converts to this type from the input type.
source§

impl From<u16> for I384

source§

fn from(val: u16) -> I384

Converts to this type from the input type.
source§

impl From<u32> for I384

source§

fn from(val: u32) -> I384

Converts to this type from the input type.
source§

impl From<u64> for I384

source§

fn from(val: u64) -> I384

Converts to this type from the input type.
source§

impl From<u8> for I384

source§

fn from(val: u8) -> I384

Converts to this type from the input type.
source§

impl From<usize> for I384

source§

fn from(val: usize) -> I384

Converts to this type from the input type.
source§

impl FromPrimitive for I384

source§

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

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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<I384>

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 I384

§

type Err = ParseI384Error

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

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

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

impl Hash for I384

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<&I384> for &I384

§

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

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<&I384> for I384

§

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

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

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

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<I384> for I384

§

type Output = I384

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<&I384> for I384

source§

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

Performs the *= operation. Read more
source§

impl MulAssign<I384> for I384

source§

fn mul_assign(&mut self, other: I384)

Performs the *= operation. Read more
source§

impl Neg for I384

§

type Output = I384

The resulting type after applying the - operator.
source§

fn neg(self) -> I384

Performs the unary - operation. Read more
source§

impl Not for &I384

§

type Output = <I384 as Not>::Output

The resulting type after applying the ! operator.
source§

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

Performs the unary ! operation. Read more
source§

impl Not for I384

§

type Output = I384

The resulting type after applying the ! operator.
source§

fn not(self) -> I384

Performs the unary ! operation. Read more
source§

impl NthRoot for I384

source§

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

source§

impl One for I384

source§

fn one() -> I384

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 I384

source§

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

source§

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

source§

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

source§

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

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

§

type Output = I384

The result after applying the operator.
source§

impl Rem<&I384> for &I384

§

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

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<&I384> for I384

§

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

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

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

§

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

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<I384> for I384

§

type Output = I384

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<&I384> for I384

source§

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

Performs the %= operation. Read more
source§

impl RemAssign<I384> for I384

source§

fn rem_assign(&mut self, other: I384)

Performs the %= operation. Read more
source§

impl Shl<u32> for I384

§

type Output = I384

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

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

Performs the << operation. Read more
source§

impl ShlAssign<u32> for I384

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
source§

impl Shr<u32> for I384

§

type Output = I384

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

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

Performs the >> operation. Read more
source§

impl ShrAssign<u32> for I384

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
source§

impl Sqrt for I384

source§

fn sqrt(self) -> I384

source§

impl Sub<&I384> for &I384

§

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

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<&I384> for I384

§

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

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

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

§

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

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<I384> for I384

§

type Output = I384

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<&I384> for I384

source§

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

Performs the -= operation. Read more
source§

impl SubAssign<I384> for I384

source§

fn sub_assign(&mut self, other: I384)

Performs the -= operation. Read more
source§

impl ToPrimitive for I384

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 I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<BigInt> for I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for I192

§

type Error = ParseI192Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for I256

§

type Error = ParseI256Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for I320

§

type Error = ParseI320Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for PreciseDecimal

§

type Error = ParsePreciseDecimalError

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U192

§

type Error = ParseU192Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U256

§

type Error = ParseU256Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U320

§

type Error = ParseU320Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U384

§

type Error = ParseU384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U448

§

type Error = ParseU448Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U512

§

type Error = ParseU512Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for U768

§

type Error = ParseU768Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for i128

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for i16

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for i32

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for i64

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for i8

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for isize

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for u128

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for u16

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for u32

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for u64

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for u8

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I384> for usize

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I448> for I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<I512> for I384

§

type Error = ParseI384Error

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

fn try_from(val: I512) -> Result<I384, <I384 as TryFrom<I512>>::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<U384> for I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<U448> for I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<U512> for I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl TryFrom<U768> for I384

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

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

§

type Error = ParseI384Error

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

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

Performs the conversion.
source§

impl Zero for I384

source§

fn zero() -> I384

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 I384

source§

impl Eq for I384

Auto Trait Implementations§

§

impl RefUnwindSafe for I384

§

impl Send for I384

§

impl Sync for I384

§

impl Unpin for I384

§

impl UnwindSafe for I384

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>,