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

A generic trait for converting a value to a BigInt.

Required Methods

Converts the value of self to a BigInt.

Implementations on Foreign Types

Implementors