pub trait ToBigInt { // Required method fn to_bigint(&self) -> Option<BigInt>; }
A generic trait for converting a value to a BigInt. This may return None when converting from f32 or f64, and will always succeed when converting from any integer or unsigned primitive, or BigUint.
BigInt
None
f32
f64
BigUint
Converts the value of self to a BigInt.
self