pub trait ToBigUint {
    fn to_biguint(&self) -> Option<BigUint>;
}
Expand description

A generic trait for converting a value to a BigUint.

Required Methods

Converts the value of self to a BigUint.

Implementations on Foreign Types

Implementors