pub trait ToBigInt { // Required method fn to_bigint(&self) -> Option<BigInt>; }
A generic trait for converting a value to a BigInt.
BigInt
Converts the value of self to a BigInt.
self