Struct eetf::BigInteger [] [src]

pub struct BigInteger {
    pub value: BigInt,
}

Multiple precision integer.

Fields

The value of the integer

Trait Implementations

impl ToPrimitive for BigInteger
[src]

Converts the value of self to an i64.

Converts the value of self to an u64.

Converts the value of self to an f64.

Converts the value of self to an isize.

Converts the value of self to an i8.

Converts the value of self to an i16.

Converts the value of self to an i32.

Converts the value of self to a usize.

Converts the value of self to an u8.

Converts the value of self to an u16.

Converts the value of self to an u32.

Converts the value of self to an f32.

impl ToBigInt for BigInteger
[src]

Converts the value of self to a BigInt.

impl ToBigUint for BigInteger
[src]

Converts the value of self to a BigUint.

impl Debug for BigInteger
[src]

Formats the value using the given formatter.

impl PartialEq for BigInteger
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for BigInteger
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for BigInteger
[src]

Formats the value using the given formatter. Read more

impl From<i8> for BigInteger
[src]

Performs the conversion.

impl From<u8> for BigInteger
[src]

Performs the conversion.

impl From<i16> for BigInteger
[src]

Performs the conversion.

impl From<u16> for BigInteger
[src]

Performs the conversion.

impl From<i32> for BigInteger
[src]

Performs the conversion.

impl From<u32> for BigInteger
[src]

Performs the conversion.

impl From<i64> for BigInteger
[src]

Performs the conversion.

impl From<u64> for BigInteger
[src]

Performs the conversion.

impl From<isize> for BigInteger
[src]

Performs the conversion.

impl From<usize> for BigInteger
[src]

Performs the conversion.

impl<'a> From<&'a FixInteger> for BigInteger
[src]

Performs the conversion.