Trait num_bigint::ToBigInt [] [src]

pub trait ToBigInt {
    fn to_bigint(&self) -> Option<BigInt>;
}

A generic trait for converting a value to a BigInt.

Required Methods

fn to_bigint(&self) -> Option<BigInt>

Converts the value of self to a BigInt.

Implementors