pub trait Characteristic: Clone {
// Required method
fn to_biguint() -> BigUint;
}Expand description
The characteristic of a field. It must be zero, or a prime number.
Required Methods§
fn to_biguint() -> BigUint
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.