pub trait IntoBigUint {
    fn into_biguint(self) -> Option<BigUint>;
}
Expand description

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

Required Methods

Converts the value of self to a BigUint.

Implementations on Foreign Types

Implementors