pub trait IntoBigUint {
// Required method
fn into_biguint(self) -> Option<BigUint>;
}
Expand description
A generic trait for converting a value to a BigUint
, and consuming the value.
Required Methods§
Sourcefn into_biguint(self) -> Option<BigUint>
fn into_biguint(self) -> Option<BigUint>
Converts the value of self
to a BigUint
.