pub trait IntoBigInt {
    fn into_bigint(self) -> Option<BigInt>;
}
Expand description

A generic trait for converting a value to a BigInt, consuming the value.

Required Methods

Converts the value of self to a BigInt.

Implementations on Foreign Types

Implementors