Trait num_bigint::ToBigUint
source · pub trait ToBigUint {
// Required method
fn to_biguint(&self) -> Option<BigUint>;
}
Expand description
A generic trait for converting a value to a BigUint
.
Required Methods§
sourcefn to_biguint(&self) -> Option<BigUint>
fn to_biguint(&self) -> Option<BigUint>
Converts the value of self
to a BigUint
.