Struct eetf::BigInteger [] [src]

pub struct BigInteger {
    pub value: BigInt,
}

Multiple precision integer.

Fields

value: BigInt

The value of the integer

Trait Implementations

impl Clone for BigInteger
[src]

fn clone(&self) -> BigInteger

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl PartialEq for BigInteger
[src]

fn eq(&self, __arg_0: &BigInteger) -> bool

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

fn ne(&self, __arg_0: &BigInteger) -> bool

This method tests for !=.

impl Debug for BigInteger
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for BigInteger
[src]

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

Formats the value using the given formatter.

impl From<i64> for BigInteger
[src]

fn from(value: i64) -> Self

Performs the conversion.

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

fn from(i: &FixInteger) -> Self

Performs the conversion.