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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".