Struct revm::precompile::primitives::alloy_primitives::Signed

source ·
pub struct Signed<const BITS: usize, const LIMBS: usize>(/* private fields */);
Expand description

Signed integer wrapping a ruint::Uint.

This signed integer implementation is fully abstract across the number of bits. It wraps a ruint::Uint, and co-opts the most significant bit to represent the sign. The number is represented in two’s complement, using the underlying Uint’s u64 limbs. The limbs can be accessed via the Signed::as_limbs() method, and are least-significant first.

§Aliases

We provide aliases for every bit-width divisble by 8, from 8 to 256. These are located in crate::aliases and are named I256, I248 etc. Most users will want crate::I256.

§Usage

// Instantiate from a number
let a = I256::unchecked_from(1);
// Use `try_from` if you're not sure it'll fit
let b = I256::try_from(200000382).unwrap();

// Or parse from a string :)
let c = "100".parse::<I256>().unwrap();
let d = "-0x138f".parse::<I256>().unwrap();

// Preceding plus is allowed but not recommended
let e = "+0xdeadbeef".parse::<I256>().unwrap();

// Underscores are ignored
let f = "1_000_000".parse::<I256>().unwrap();

// But invalid chars are not
assert!("^31".parse::<I256>().is_err());

// Math works great :)
let g = a * b + c - d;

// And so do comparisons!
assert!(e > a);

// We have some useful constants too
assert_eq!(I256::ZERO, I256::unchecked_from(0));
assert_eq!(I256::ONE, I256::unchecked_from(1));
assert_eq!(I256::MINUS_ONE, I256::unchecked_from(-1));

Implementations§

source§

impl<const BITS: usize, const LIMBS: usize> Signed<BITS, LIMBS>

source

pub const fn low_u8(&self) -> u8

Low word.

source

pub fn as_u8(&self) -> u8

Conversion to u8 with overflow checking.

§Panics

Panics if the number is outside the u8 valid range.

source

pub const fn low_i8(&self) -> i8

Low word.

source

pub fn as_i8(&self) -> i8

Conversion to i8 with overflow checking.

§Panics

Panics if the number is outside the i8 valid range.

source

pub const fn low_u16(&self) -> u16

Low word.

source

pub fn as_u16(&self) -> u16

Conversion to u16 with overflow checking.

§Panics

Panics if the number is outside the u16 valid range.

source

pub const fn low_i16(&self) -> i16

Low word.

source

pub fn as_i16(&self) -> i16

Conversion to i16 with overflow checking.

§Panics

Panics if the number is outside the i16 valid range.

source

pub const fn low_u32(&self) -> u32

Low word.

source

pub fn as_u32(&self) -> u32

Conversion to u32 with overflow checking.

§Panics

Panics if the number is outside the u32 valid range.

source

pub const fn low_i32(&self) -> i32

Low word.

source

pub fn as_i32(&self) -> i32

Conversion to i32 with overflow checking.

§Panics

Panics if the number is outside the i32 valid range.

source

pub const fn low_u64(&self) -> u64

Low word.

source

pub fn as_u64(&self) -> u64

Conversion to u64 with overflow checking.

§Panics

Panics if the number is outside the u64 valid range.

source

pub const fn low_i64(&self) -> i64

Low word.

source

pub fn as_i64(&self) -> i64

Conversion to i64 with overflow checking.

§Panics

Panics if the number is outside the i64 valid range.

source

pub const fn low_usize(&self) -> usize

Low word.

source

pub fn as_usize(&self) -> usize

Conversion to usize with overflow checking.

§Panics

Panics if the number is outside the usize valid range.

source

pub const fn low_isize(&self) -> isize

Low word.

source

pub fn as_isize(&self) -> isize

Conversion to isize with overflow checking.

§Panics

Panics if the number is outside the isize valid range.

source§

impl<const BITS: usize, const LIMBS: usize> Signed<BITS, LIMBS>

source

pub const BITS: usize = BITS

Number of bits.

source

pub const BYTES: usize = Uint<BITS, LIMBS>::BYTES

The size of this integer type in bytes. Note that some bits may be forced zero if BITS is not cleanly divisible by eight.

source

pub const MIN: Signed<BITS, LIMBS> = _

The minimum value.

source

pub const MAX: Signed<BITS, LIMBS> = _

The maximum value.

source

pub const ZERO: Signed<BITS, LIMBS> = _

Zero (additive identity) of this type.

source

pub const ONE: Signed<BITS, LIMBS> = _

One (multiplicative identity) of this type.

source

pub const MINUS_ONE: Signed<BITS, LIMBS> = _

Minus one (multiplicative inverse) of this type.

source

pub const fn from_raw(val: Uint<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Coerces an unsigned integer into a signed one. If the unsigned integer is greater than the greater than or equal to 1 << 255, then the result will overflow into a negative value.

source

pub fn unchecked_from<T>(val: T) -> Signed<BITS, LIMBS>
where T: TryInto<Signed<BITS, LIMBS>>, <T as TryInto<Signed<BITS, LIMBS>>>::Error: Debug,

Shortcut for val.try_into().unwrap().

§Panics

Panics if the conversion fails.

source

pub fn unchecked_into<T>(self) -> T
where Signed<BITS, LIMBS>: TryInto<T>, <Signed<BITS, LIMBS> as TryInto<T>>::Error: Debug,

Shortcut for self.try_into().unwrap().

§Panics

Panics if the conversion fails.

source

pub const fn into_raw(self) -> Uint<BITS, LIMBS>

Returns the signed integer as a unsigned integer. If the value of self negative, then the two’s complement of its absolute value will be returned.

source

pub const fn sign(&self) -> Sign

Returns the sign of self.

source

pub const fn is_odd(&self) -> bool

Determines if the integer is odd.

source

pub const fn const_eq(&self, other: &Signed<BITS, LIMBS>) -> bool

Compile-time equality. NOT constant-time equality.

source

pub const fn is_zero(&self) -> bool

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

source

pub const fn is_positive(&self) -> bool

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

source

pub const fn is_negative(&self) -> bool

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

source

pub fn count_ones(&self) -> usize

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

source

pub fn count_zeros(&self) -> usize

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

source

pub fn leading_zeros(&self) -> usize

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

source

pub fn trailing_zeros(&self) -> usize

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

source

pub fn trailing_ones(&self) -> usize

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

source

pub const fn bit(&self, index: usize) -> bool

Returns whether a specific bit is set.

Returns false if index exceeds the bit width of the number.

source

pub const fn byte(&self, index: usize) -> u8

Returns a specific byte. The byte at index 0 is the least significant byte (little endian).

§Panics

Panics if index exceeds the byte width of the number.

source

pub fn bits(&self) -> u32

Return the least number of bits needed to represent the number.

source

pub fn overflowing_from_sign_and_abs( sign: Sign, abs: Uint<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Creates a Signed from a sign and an absolute value. Returns the value and a bool that is true if the conversion caused an overflow.

source

pub fn checked_from_sign_and_abs( sign: Sign, abs: Uint<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

Creates a Signed from an absolute value and a negative flag. Returns None if it would overflow as Signed.

source

pub fn from_dec_str( value: &str ) -> Result<Signed<BITS, LIMBS>, ParseSignedError>

Convert from a decimal string.

source

pub fn to_dec_string(&self) -> String

Convert to a decimal string.

source

pub fn from_hex_str( value: &str ) -> Result<Signed<BITS, LIMBS>, ParseSignedError>

Convert from a hex string.

source

pub fn to_hex_string(&self) -> String

Convert to a hex string.

source

pub fn into_sign_and_abs(&self) -> (Sign, Uint<BITS, LIMBS>)

Splits a Signed into its absolute value and negative flag.

source

pub const fn to_be_bytes<const BYTES: usize>(&self) -> [u8; BYTES]

Converts self to a big-endian byte array of size exactly Self::BYTES.

§Panics

Panics if the generic parameter BYTES is not exactly Self::BYTES. Ideally this would be a compile time error, but this is blocked by Rust issue #60551.

source

pub const fn to_le_bytes<const BYTES: usize>(&self) -> [u8; BYTES]

Converts self to a little-endian byte array of size exactly Self::BYTES.

§Panics

Panics if the generic parameter BYTES is not exactly Self::BYTES. Ideally this would be a compile time error, but this is blocked by Rust issue #60551.

source

pub const fn from_be_bytes<const BYTES: usize>( bytes: [u8; BYTES] ) -> Signed<BITS, LIMBS>

Converts a big-endian byte array of size exactly Self::BYTES.

§Panics

Panics if the generic parameter BYTES is not exactly Self::BYTES. Ideally this would be a compile time error, but this is blocked by Rust issue #60551.

Panics if the value is too large for the bit-size of the Uint.

source

pub const fn from_le_bytes<const BYTES: usize>( bytes: [u8; BYTES] ) -> Signed<BITS, LIMBS>

Convert from an array in LE format

§Panics

Panics if the given array is not the correct length.

source

pub fn try_from_be_slice(slice: &[u8]) -> Option<Signed<BITS, LIMBS>>

Creates a new integer from a big endian slice of bytes.

The slice is interpreted as a big endian number. Leading zeros are ignored. The slice can be any length.

Returns None if the value is larger than fits the Uint.

source

pub fn try_from_le_slice(slice: &[u8]) -> Option<Signed<BITS, LIMBS>>

Creates a new integer from a little endian slice of bytes.

The slice is interpreted as a big endian number. Leading zeros are ignored. The slice can be any length.

Returns None if the value is larger than fits the Uint.

source

pub const fn as_limbs(&self) -> &[u64; LIMBS]

View the array of limbs.

source

pub const fn into_limbs(self) -> [u64; LIMBS]

Convert to a array of limbs.

Limbs are least significant first.

source

pub const fn from_limbs(limbs: [u64; LIMBS]) -> Signed<BITS, LIMBS>

Construct a new integer from little-endian a array of limbs.

§Panics

Panics if LIMBS is not equal to nlimbs(BITS).

Panics if the value is to large for the bit-size of the Uint.

source

pub fn from_base_be<I>( base: u64, digits: I ) -> Result<Signed<BITS, LIMBS>, BaseConvertError>
where I: IntoIterator<Item = u64>,

Constructs the Signed from digits in the base base in big-endian. Wrapper around ruint’s from_base_be

§Errors
source§

impl<const BITS: usize, const LIMBS: usize> Signed<BITS, LIMBS>

source

pub fn abs(self) -> Signed<BITS, LIMBS>

Computes the absolute value of self.

§Overflow behavior

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

source

pub fn overflowing_abs(self) -> (Signed<BITS, LIMBS>, bool)

Computes the absolute value of self.

Returns a tuple of the absolute version of self along with a boolean indicating whether an overflow happened. If self is the minimum value then the minimum value will be returned again and true will be returned for an overflow happening.

source

pub fn checked_abs(self) -> Option<Signed<BITS, LIMBS>>

Checked absolute value. Computes self.abs(), returning None if self == MIN.

source

pub fn saturating_abs(self) -> Signed<BITS, LIMBS>

Saturating absolute value. Computes self.abs(), returning MAX if self == MIN instead of overflowing.

source

pub fn wrapping_abs(self) -> Signed<BITS, LIMBS>

Wrapping absolute value. Computes self.abs(), wrapping around at the boundary of the type.

source

pub fn unsigned_abs(self) -> Uint<BITS, LIMBS>

Computes the absolute value of self without any wrapping or panicking.

source

pub fn overflowing_neg(self) -> (Signed<BITS, LIMBS>, bool)

Negates self, overflowing if this is equal to the minimum value.

Returns a tuple of the negated version of self along with a boolean indicating whether an overflow happened. If self is the minimum value, then the minimum value will be returned again and true will be returned for an overflow happening.

source

pub fn checked_neg(self) -> Option<Signed<BITS, LIMBS>>

Checked negation. Computes -self, returning None if self == MIN.

source

pub fn saturating_neg(self) -> Signed<BITS, LIMBS>

Saturating negation. Computes -self, returning MAX if self == MIN instead of overflowing.

source

pub fn wrapping_neg(self) -> Signed<BITS, LIMBS>

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

The only case where such wrapping can occur is when one negates MIN on a signed type (where MIN is 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 returns MIN itself.

source

pub const fn overflowing_add( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Calculates self + rhs

Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

source

pub const fn checked_add( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

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

source

pub const fn saturating_add( self, rhs: Signed<BITS, LIMBS> ) -> Signed<BITS, LIMBS>

Saturating integer addition. Computes self + rhs, saturating at the numeric bounds instead of overflowing.

source

pub const fn wrapping_add(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

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

source

pub const fn overflowing_sub( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Calculates self - rhs

Returns a tuple of the subtraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

source

pub const fn checked_sub( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

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

source

pub const fn saturating_sub( self, rhs: Signed<BITS, LIMBS> ) -> Signed<BITS, LIMBS>

Saturating integer subtraction. Computes self - rhs, saturating at the numeric bounds instead of overflowing.

source

pub const fn wrapping_sub(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

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

source

pub fn overflowing_mul( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Calculates self * rhs

Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

source

pub fn checked_mul( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

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

source

pub fn saturating_mul(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Saturating integer multiplication. Computes self * rhs, saturating at the numeric bounds instead of overflowing.

source

pub fn wrapping_mul(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

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

source

pub fn overflowing_div( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Calculates self / rhs

Returns a tuple of the divisor along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would occur then self is returned.

§Panics

If rhs is 0.

source

pub fn checked_div( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.

source

pub fn saturating_div(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Saturating integer division. Computes self / rhs, saturating at the numeric bounds instead of overflowing.

§Panics

If rhs is 0.

source

pub fn wrapping_div(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

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

The only case where such wrapping can occur is when one divides MIN / -1 on a signed type (where MIN is the negative minimal value for the type); this is equivalent to -MIN, a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

§Panics

If rhs is 0.

source

pub fn overflowing_rem( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Calculates self % rhs

Returns a tuple of the remainder after dividing along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would occur then 0 is returned.

§Panics

If rhs is 0.

source

pub fn checked_rem( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

Checked integer remainder. Computes self % rhs, returning None if rhs == 0 or the division results in overflow.

source

pub fn wrapping_rem(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

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

Such wrap-around never actually occurs mathematically; implementation artifacts make x % y invalid for MIN / -1 on a signed type (where MIN is the negative minimal value). In such a case, this function returns 0.

§Panics

If rhs is 0.

source

pub fn div_euclid(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Calculates the quotient of Euclidean division of self by rhs.

This computes the integer q such that self = q * rhs + r, with r = self.rem_euclid(rhs) and 0 <= r < abs(rhs).

In other words, the result is self / rhs rounded to the integer q such that self >= q * rhs. If self > 0, this is equal to round towards zero (the default in Rust); if self < 0, this is equal to round towards +/- infinity.

§Panics

If rhs is 0 or the division results in overflow.

source

pub fn overflowing_div_euclid( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Calculates the quotient of Euclidean division self.div_euclid(rhs).

Returns a tuple of the divisor along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would occur then self is returned.

§Panics

If rhs is 0.

source

pub fn checked_div_euclid( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

Checked Euclidean division. Computes self.div_euclid(rhs), returning None if rhs == 0 or the division results in overflow.

source

pub fn wrapping_div_euclid( self, rhs: Signed<BITS, LIMBS> ) -> Signed<BITS, LIMBS>

Wrapping Euclidean division. Computes self.div_euclid(rhs), wrapping around at the boundary of the type.

Wrapping will only occur in MIN / -1 on a signed type (where MIN is the negative minimal value for the type). This is equivalent to -MIN, a positive value that is too large to represent in the type. In this case, this method returns MIN itself.

§Panics

If rhs is 0.

source

pub fn rem_euclid(self, rhs: Signed<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Calculates the least nonnegative remainder of self (mod rhs).

This is done as if by the Euclidean division algorithm – given r = self.rem_euclid(rhs), self = rhs * self.div_euclid(rhs) + r, and 0 <= r < abs(rhs).

§Panics

If rhs is 0 or the division results in overflow.

source

pub fn overflowing_rem_euclid( self, rhs: Signed<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

Overflowing Euclidean remainder. Calculates self.rem_euclid(rhs).

Returns a tuple of the remainder after dividing along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would occur then 0 is returned.

§Panics

If rhs is 0.

source

pub fn wrapping_rem_euclid( self, rhs: Signed<BITS, LIMBS> ) -> Signed<BITS, LIMBS>

Wrapping Euclidean remainder. Computes self.rem_euclid(rhs), wrapping around at the boundary of the type.

Wrapping will only occur in MIN % -1 on a signed type (where MIN is the negative minimal value for the type). In this case, this method returns 0.

§Panics

If rhs is 0.

source

pub fn checked_rem_euclid( self, rhs: Signed<BITS, LIMBS> ) -> Option<Signed<BITS, LIMBS>>

Checked Euclidean remainder. Computes self.rem_euclid(rhs), returning None if rhs == 0 or the division results in overflow.

source

pub fn exp10(n: usize) -> Signed<BITS, LIMBS>

Create 10**n as this type.

§Panics

If the result overflows the type.

source

pub fn pow(self, exp: Uint<BITS, LIMBS>) -> Signed<BITS, LIMBS>

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

§Panics

If the result overflows the type in debug mode.

source

pub fn overflowing_pow( self, exp: Uint<BITS, LIMBS> ) -> (Signed<BITS, LIMBS>, bool)

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

Returns a tuple of the exponentiation along with a bool indicating whether an overflow happened.

source

pub fn checked_pow(self, exp: Uint<BITS, LIMBS>) -> Option<Signed<BITS, LIMBS>>

Checked exponentiation. Computes self.pow(exp), returning None if overflow occurred.

source

pub fn saturating_pow(self, exp: Uint<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Saturating integer exponentiation. Computes self.pow(exp), saturating at the numeric bounds instead of overflowing.

source

pub fn wrapping_pow(self, exp: Uint<BITS, LIMBS>) -> Signed<BITS, LIMBS>

Raises self to the power of exp, wrapping around at the boundary of the type.

source

pub fn overflowing_shl(self, rhs: usize) -> (Signed<BITS, LIMBS>, bool)

Shifts self left by rhs bits.

Returns a tuple of the shifted version of self along with a boolean indicating whether the shift value was larger than or equal to the number of bits.

source

pub fn checked_shl(self, rhs: usize) -> Option<Signed<BITS, LIMBS>>

Checked shift left. Computes self << rhs, returning None if rhs is larger than or equal to the number of bits in self.

source

pub fn wrapping_shl(self, rhs: usize) -> Signed<BITS, LIMBS>

Wrapping shift left. Computes self << rhs, returning 0 if larger than or equal to the number of bits in self.

source

pub fn overflowing_shr(self, rhs: usize) -> (Signed<BITS, LIMBS>, bool)

Shifts self right by rhs bits.

Returns a tuple of the shifted version of self along with a boolean indicating whether the shift value was larger than or equal to the number of bits.

source

pub fn checked_shr(self, rhs: usize) -> Option<Signed<BITS, LIMBS>>

Checked shift right. Computes self >> rhs, returning None if rhs is larger than or equal to the number of bits in self.

source

pub fn wrapping_shr(self, rhs: usize) -> Signed<BITS, LIMBS>

Wrapping shift right. Computes self >> rhs, returning 0 if larger than or equal to the number of bits in self.

source

pub fn asr(self, rhs: usize) -> Signed<BITS, LIMBS>

Arithmetic shift right operation. Computes self >> rhs maintaining the original sign. If the number is positive this is the same as logic shift right.

source

pub fn asl(self, rhs: usize) -> Option<Signed<BITS, LIMBS>>

Arithmetic shift left operation. Computes self << rhs, checking for overflow on the final result.

Returns None if the operation overflowed (most significant bit changes).

source

pub fn twos_complement(self) -> Uint<BITS, LIMBS>

Compute the two’s complement of this number.

Trait Implementations§

source§

impl<T, const BITS: usize, const LIMBS: usize> Add<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <Signed<BITS, LIMBS> as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> AddAssign<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn add_assign(&mut self, rhs: T)

Performs the += operation. Read more
source§

impl<'arbitrary, const BITS: usize, const LIMBS: usize> Arbitrary<'arbitrary> for Signed<BITS, LIMBS>

source§

fn arbitrary( u: &mut Unstructured<'arbitrary> ) -> Result<Signed<BITS, LIMBS>, Error>

Generate an arbitrary value of Self from the given unstructured data. Read more
source§

fn arbitrary_take_rest( u: Unstructured<'arbitrary> ) -> Result<Signed<BITS, LIMBS>, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Arbitrary for Signed<BITS, LIMBS>

§

type Parameters = <Uint<BITS, LIMBS> as Arbitrary>::Parameters

The type of parameters that arbitrary_with accepts for configuration of the generated Strategy. Parameters must implement Default.
§

type Strategy = Map<<Uint<BITS, LIMBS> as Arbitrary>::Strategy, fn(_: Uint<BITS, LIMBS>) -> Signed<BITS, LIMBS>>

The type of Strategy used to generate values of type Self.
source§

fn arbitrary_with( _top: <Signed<BITS, LIMBS> as Arbitrary>::Parameters ) -> <Signed<BITS, LIMBS> as Arbitrary>::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). The strategy is passed the arguments given in args. Read more
source§

fn arbitrary() -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). Read more
source§

impl<const BITS: usize, const LIMBS: usize> Binary for Signed<BITS, LIMBS>

source§

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

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

impl<const BITS: usize, const LIMBS: usize> BitAnd for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: Signed<BITS, LIMBS> ) -> <Signed<BITS, LIMBS> as BitAnd>::Output

Performs the & operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> BitAndAssign for Signed<BITS, LIMBS>

source§

fn bitand_assign(&mut self, rhs: Signed<BITS, LIMBS>)

Performs the &= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> BitOr for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: Signed<BITS, LIMBS> ) -> <Signed<BITS, LIMBS> as BitOr>::Output

Performs the | operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> BitOrAssign for Signed<BITS, LIMBS>

source§

fn bitor_assign(&mut self, rhs: Signed<BITS, LIMBS>)

Performs the |= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> BitXor for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: Signed<BITS, LIMBS> ) -> <Signed<BITS, LIMBS> as BitXor>::Output

Performs the ^ operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> BitXorAssign for Signed<BITS, LIMBS>

source§

fn bitxor_assign(&mut self, rhs: Signed<BITS, LIMBS>)

Performs the ^= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Clone for Signed<BITS, LIMBS>

source§

fn clone(&self) -> Signed<BITS, LIMBS>

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<const BITS: usize, const LIMBS: usize> Debug for Signed<BITS, LIMBS>

source§

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

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

impl<const BITS: usize, const LIMBS: usize> Default for Signed<BITS, LIMBS>

source§

fn default() -> Signed<BITS, LIMBS>

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

impl<'de, const BITS: usize, const LIMBS: usize> Deserialize<'de> for Signed<BITS, LIMBS>

source§

fn deserialize<D>( deserializer: D ) -> Result<Signed<BITS, LIMBS>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

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

impl<const BITS: usize, const LIMBS: usize> Display for Signed<BITS, LIMBS>

source§

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

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

impl<T, const BITS: usize, const LIMBS: usize> Div<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Signed<BITS, LIMBS> as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> DivAssign<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn div_assign(&mut self, rhs: T)

Performs the /= operation. Read more
source§

impl From<FixedBytes<1>> for Signed<8, 1>

source§

fn from(value: FixedBytes<1>) -> Signed<8, 1>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<16>> for Signed<128, 2>

source§

fn from(value: FixedBytes<16>) -> Signed<128, 2>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<2>> for Signed<16, 1>

source§

fn from(value: FixedBytes<2>) -> Signed<16, 1>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<20>> for Signed<160, 3>

source§

fn from(value: FixedBytes<20>) -> Signed<160, 3>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<32>> for Signed<256, 4>

source§

fn from(value: FixedBytes<32>) -> Signed<256, 4>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<4>> for Signed<32, 1>

source§

fn from(value: FixedBytes<4>) -> Signed<32, 1>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<64>> for Signed<512, 8>

source§

fn from(value: FixedBytes<64>) -> Signed<512, 8>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<FixedBytes<8>> for Signed<64, 1>

source§

fn from(value: FixedBytes<8>) -> Signed<64, 1>

Converts a fixed byte array into a fixed-width unsigned integer by interpreting the bytes as big-endian.

source§

impl From<ParseUnits> for Signed<256, 4>

source§

fn from(value: ParseUnits) -> Signed<256, 4>

Converts to this type from the input type.
source§

impl From<Signed<128, 2>> for FixedBytes<16>

source§

fn from(value: Signed<128, 2>) -> FixedBytes<16>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<16, 1>> for FixedBytes<2>

source§

fn from(value: Signed<16, 1>) -> FixedBytes<2>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<160, 3>> for FixedBytes<20>

source§

fn from(value: Signed<160, 3>) -> FixedBytes<20>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<256, 4>> for FixedBytes<32>

source§

fn from(value: Signed<256, 4>) -> FixedBytes<32>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<256, 4>> for ParseUnits

source§

fn from(value: Signed<256, 4>) -> ParseUnits

Converts to this type from the input type.
source§

impl From<Signed<32, 1>> for FixedBytes<4>

source§

fn from(value: Signed<32, 1>) -> FixedBytes<4>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<512, 8>> for FixedBytes<64>

source§

fn from(value: Signed<512, 8>) -> FixedBytes<64>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<64, 1>> for FixedBytes<8>

source§

fn from(value: Signed<64, 1>) -> FixedBytes<8>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl From<Signed<8, 1>> for FixedBytes<1>

source§

fn from(value: Signed<8, 1>) -> FixedBytes<1>

Converts a fixed-width unsigned integer into a fixed byte array by interpreting the bytes as big-endian.

source§

impl<const BITS: usize, const LIMBS: usize> FromStr for Signed<BITS, LIMBS>

§

type Err = ParseSignedError

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

fn from_str( s: &str ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as FromStr>::Err>

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

impl<const BITS: usize, const LIMBS: usize> Hash for Signed<BITS, LIMBS>

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<const BITS: usize, const LIMBS: usize> LowerHex for Signed<BITS, LIMBS>

source§

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

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

impl<T, const BITS: usize, const LIMBS: usize> Mul<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Signed<BITS, LIMBS> as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> MulAssign<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn mul_assign(&mut self, rhs: T)

Performs the *= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Neg for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the - operator.
source§

fn neg(self) -> <Signed<BITS, LIMBS> as Neg>::Output

Performs the unary - operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Not for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the ! operator.
source§

fn not(self) -> <Signed<BITS, LIMBS> as Not>::Output

Performs the unary ! operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Octal for Signed<BITS, LIMBS>

source§

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

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

impl<const BITS: usize, const LIMBS: usize> Ord for Signed<BITS, LIMBS>

source§

fn cmp(&self, other: &Signed<BITS, LIMBS>) -> Ordering

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

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

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

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

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

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

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

impl<const BITS: usize, const LIMBS: usize> PartialEq for Signed<BITS, LIMBS>

source§

fn eq(&self, other: &Signed<BITS, LIMBS>) -> 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<const BITS: usize, const LIMBS: usize> PartialOrd for Signed<BITS, LIMBS>

source§

fn partial_cmp(&self, other: &Signed<BITS, LIMBS>) -> 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<T, const BITS: usize, const LIMBS: usize> Product<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn product<I>(iter: I) -> Signed<BITS, LIMBS>
where I: Iterator<Item = T>,

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl<T, const BITS: usize, const LIMBS: usize> Rem<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Signed<BITS, LIMBS> as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> RemAssign<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn rem_assign(&mut self, rhs: T)

Performs the %= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Serialize for Signed<BITS, LIMBS>

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

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

impl<const BITS: usize, const LIMBS: usize> Shl<i16> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: i16) -> <Signed<BITS, LIMBS> as Shl<i16>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<i32> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: i32) -> <Signed<BITS, LIMBS> as Shl<i32>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<i64> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: i64) -> <Signed<BITS, LIMBS> as Shl<i64>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<i8> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: i8) -> <Signed<BITS, LIMBS> as Shl<i8>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<isize> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: isize) -> <Signed<BITS, LIMBS> as Shl<isize>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<u16> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: u16) -> <Signed<BITS, LIMBS> as Shl<u16>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<u32> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: u32) -> <Signed<BITS, LIMBS> as Shl<u32>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<u64> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: u64) -> <Signed<BITS, LIMBS> as Shl<u64>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<u8> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: u8) -> <Signed<BITS, LIMBS> as Shl<u8>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shl<usize> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shl(self, rhs: usize) -> <Signed<BITS, LIMBS> as Shl<usize>>::Output

Performs the << operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<i16> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: i16)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<i32> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: i32)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<i64> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: i64)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<i8> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: i8)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<isize> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: isize)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<u16> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<u32> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<u64> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: u64)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<u8> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShlAssign<usize> for Signed<BITS, LIMBS>

source§

fn shl_assign(&mut self, rhs: usize)

Performs the <<= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<i16> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: i16) -> <Signed<BITS, LIMBS> as Shr<i16>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<i32> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: i32) -> <Signed<BITS, LIMBS> as Shr<i32>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<i64> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: i64) -> <Signed<BITS, LIMBS> as Shr<i64>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<i8> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: i8) -> <Signed<BITS, LIMBS> as Shr<i8>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<isize> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: isize) -> <Signed<BITS, LIMBS> as Shr<isize>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<u16> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: u16) -> <Signed<BITS, LIMBS> as Shr<u16>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<u32> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: u32) -> <Signed<BITS, LIMBS> as Shr<u32>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<u64> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: u64) -> <Signed<BITS, LIMBS> as Shr<u64>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<u8> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: u8) -> <Signed<BITS, LIMBS> as Shr<u8>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> Shr<usize> for Signed<BITS, LIMBS>

§

type Output = Signed<BITS, LIMBS>

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

fn shr(self, rhs: usize) -> <Signed<BITS, LIMBS> as Shr<usize>>::Output

Performs the >> operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<i16> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: i16)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<i32> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: i32)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<i64> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: i64)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<i8> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: i8)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<isize> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: isize)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<u16> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<u32> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<u64> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: u64)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<u8> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
source§

impl<const BITS: usize, const LIMBS: usize> ShrAssign<usize> for Signed<BITS, LIMBS>

source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> Sub<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

§

type Output = Signed<BITS, LIMBS>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Signed<BITS, LIMBS> as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> SubAssign<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn sub_assign(&mut self, rhs: T)

Performs the -= operation. Read more
source§

impl<T, const BITS: usize, const LIMBS: usize> Sum<T> for Signed<BITS, LIMBS>
where T: Into<Signed<BITS, LIMBS>>,

source§

fn sum<I>(iter: I) -> Signed<BITS, LIMBS>
where I: Iterator<Item = T>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<&String> for Signed<BITS, LIMBS>

§

type Error = ParseSignedError

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

fn try_from( value: &String ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<&String>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<&str> for Signed<BITS, LIMBS>

§

type Error = ParseSignedError

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

fn try_from( value: &str ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<&str>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for Uint<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<Uint<BITS, LIMBS>, <Uint<BITS, LIMBS> as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for i128

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<i128, <i128 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for i16

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<i16, <i16 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for i32

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<i32, <i32 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for i64

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<i64, <i64 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for i8

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<i8, <i8 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for isize

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<isize, <isize as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for u128

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<u128, <u128 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for u16

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<u16, <u16 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for u32

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<u32, <u32 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for u64

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<u64, <u64 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for u8

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<u8, <u8 as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Signed<BITS, LIMBS>> for usize

§

type Error = BigIntConversionError

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

fn try_from( value: Signed<BITS, LIMBS> ) -> Result<usize, <usize as TryFrom<Signed<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<String> for Signed<BITS, LIMBS>

§

type Error = ParseSignedError

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

fn try_from( value: String ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<String>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<Uint<BITS, LIMBS>> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( from: Uint<BITS, LIMBS> ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<Uint<BITS, LIMBS>>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<i128> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: i128 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<i128>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<i16> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: i16 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<i16>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<i32> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: i32 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<i32>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<i64> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: i64 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<i64>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<i8> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: i8 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<i8>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<isize> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: isize ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<isize>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<u128> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: u128 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<u128>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<u16> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: u16 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<u16>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<u32> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: u32 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<u32>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<u64> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: u64 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<u64>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<u8> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: u8 ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<u8>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> TryFrom<usize> for Signed<BITS, LIMBS>

§

type Error = BigIntConversionError

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

fn try_from( value: usize ) -> Result<Signed<BITS, LIMBS>, <Signed<BITS, LIMBS> as TryFrom<usize>>::Error>

Performs the conversion.
source§

impl<const BITS: usize, const LIMBS: usize> UpperHex for Signed<BITS, LIMBS>

source§

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

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

impl<const BITS: usize, const LIMBS: usize> Copy for Signed<BITS, LIMBS>

source§

impl<const BITS: usize, const LIMBS: usize> Eq for Signed<BITS, LIMBS>

source§

impl<const BITS: usize, const LIMBS: usize> StructuralPartialEq for Signed<BITS, LIMBS>

Auto Trait Implementations§

§

impl<const BITS: usize, const LIMBS: usize> Freeze for Signed<BITS, LIMBS>

§

impl<const BITS: usize, const LIMBS: usize> RefUnwindSafe for Signed<BITS, LIMBS>

§

impl<const BITS: usize, const LIMBS: usize> Send for Signed<BITS, LIMBS>

§

impl<const BITS: usize, const LIMBS: usize> Sync for Signed<BITS, LIMBS>

§

impl<const BITS: usize, const LIMBS: usize> Unpin for Signed<BITS, LIMBS>

§

impl<const BITS: usize, const LIMBS: usize> UnwindSafe for Signed<BITS, LIMBS>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<T> Conv for T

source§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

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

source§

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

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where 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.
source§

impl<T> FmtForward for T

source§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
source§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
source§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
source§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
source§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
source§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
source§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
source§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
source§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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> Pipe for T
where T: ?Sized,

source§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
source§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
source§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
source§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
source§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
source§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
source§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
source§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
source§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> Tap for T

source§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
source§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
source§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
source§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
source§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
source§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
source§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
source§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
source§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
source§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
source§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
source§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
source§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
source§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
source§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
source§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for T
where 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 T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> TryConv for T

source§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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

source§

impl<T, Rhs, Output> GroupOps<Rhs, Output> for T
where T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

source§

impl<T> JsonSchemaMaybe for T

source§

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

source§

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

source§

impl<T, Rhs, Output> ScalarMul<Rhs, Output> for T
where T: Mul<Rhs, Output = Output> + MulAssign<Rhs>,