pub trait ToBigInt {
// Required method
fn to_bigint(&self) -> Option<BigInt>;
}Expand description
A generic trait for converting a value to a BigInt.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".