pub trait ToBigUint {
// Required method
fn to_biguint(&self) -> Option<BigUint>;
}Available on (crate features
rustls or boring or acme) and crate feature rustls only.Expand description
A generic trait for converting a value to a BigUint.
Required Methods§
Sourcefn to_biguint(&self) -> Option<BigUint>
fn to_biguint(&self) -> Option<BigUint>
Converts the value of self to a BigUint.