Trait num_bigint_dig::IntoBigInt
source · pub trait IntoBigInt {
// Required method
fn into_bigint(self) -> Option<BigInt>;
}
Expand description
A generic trait for converting a value to a BigInt
, consuming the value.
Required Methods§
sourcefn into_bigint(self) -> Option<BigInt>
fn into_bigint(self) -> Option<BigInt>
Converts the value of self
to a BigInt
.